Prefer Objects to GC as label
This commit is contained in:
parent
a9fea270f5
commit
e81e145c15
@ -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' ) }
|
||||||
|
Loading…
Reference in New Issue
Block a user