aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/gc/hash1.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/gc/hash1.rb')
-rw-r--r--benchmark/gc/hash1.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/benchmark/gc/hash1.rb b/benchmark/gc/hash1.rb
new file mode 100644
index 0000000000..cb030d458d
--- /dev/null
+++ b/benchmark/gc/hash1.rb
@@ -0,0 +1,11 @@
+value = 0.01
+h = {}
+n = 50_000
+
+1.upto(n){|i|
+ h["%020d" % i] = "v-#{i}"
+}
+
+(n * 1_000).times{
+ ''
+}