Prefer Objects to GC as label

This commit is contained in:
Lourens Naude 2008-10-09 02:13:40 +01:00
parent a9fea270f5
commit e81e145c15
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ def countable_gc?
end end
def gc_counts( label, scope ) def gc_counts( label, scope )
$gc_stats << "GC #{scope} ( #{label} ) #{GC.count}" $gc_stats << "Objects #{scope} ( #{label} ) #{GC.count}"
end end
def with_gc_counts( label ) def with_gc_counts( label )
@ -24,7 +24,7 @@ end
n = 1000 n = 1000
Benchmark.bm do |x| Benchmark.bmbm do |x|
x.report( 'With GC' ) do x.report( 'With GC' ) do
with_gc_counts( 'With GC' ) do with_gc_counts( 'With GC' ) do
n.times{ with_gc.c_async_query( 'SELECT * FROM user' ) } n.times{ with_gc.c_async_query( 'SELECT * FROM user' ) }