forked from mackstann/hash-table-shootout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
console_output_sizehint
601 lines (528 loc) · 26.3 KB
/
console_output_sizehint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
sequential,2000000,LuaHashMap51,2556854272,0.099533
sequential,2000000,LuaHashMap52,2556862464,0.091838
sequential,2000000,stl_unordered_map,2589757440,0.177708
sequential,2000000,stl_unordered_map_string,2589761536,0.176209
sequential,2000000,perl_hash,2865446912,1.641918
sequential,2000000,python_dict,2743463936,0.228413
sequential,2000000,ruby_hash,2565836800,0.355395
sequential,2000000,tcl_hash,2629148672,0.509898
sequential,6000000,LuaHashMap51,2721517568,0.320007
sequential,6000000,LuaHashMap52,2721525760,0.298152
sequential,6000000,stl_unordered_map,2825400320,0.587232
sequential,6000000,stl_unordered_map_string,2825404416,0.586586
sequential,6000000,perl_hash,3661332480,5.727673
sequential,6000000,python_dict,3244691456,0.832507
sequential,6000000,ruby_hash,2704261120,1.609483
sequential,6000000,tcl_hash,2914369536,1.874506
sequential,10000000,LuaHashMap51,2759733248,0.556872
sequential,10000000,LuaHashMap52,2759741440,0.518295
sequential,10000000,stl_unordered_map,3098075136,1.035208
sequential,10000000,stl_unordered_map_string,3098079232,1.045069
sequential,10000000,perl_hash,4508602368,10.865946
sequential,10000000,python_dict,3342209024,1.002979
sequential,10000000,ruby_hash,2851074048,3.309008
sequential,10000000,tcl_hash,3174420480,2.811392
sequential,14000000,LuaHashMap51,2759733248,0.700298
sequential,14000000,LuaHashMap52,2759741440,0.646740
sequential,14000000,stl_unordered_map,3228098560,1.313147
sequential,14000000,stl_unordered_map_string,3228102656,1.309079
sequential,14000000,perl_hash,5162917888,13.998914
sequential,14000000,python_dict,3843436544,1.754444
sequential,14000000,ruby_hash,3014656000,5.340567
sequential,14000000,tcl_hash,3568689152,6.033571
sequential,18000000,LuaHashMap51,3028168704,1.034260
sequential,18000000,LuaHashMap52,3028176896,0.963946
sequential,18000000,stl_unordered_map,3506237440,1.937487
sequential,18000000,stl_unordered_map_string,3506241536,1.945142
sequential,18000000,perl_hash,6152806400,21.907739
sequential,18000000,python_dict,3942002688,1.910847
sequential,18000000,ruby_hash,3144695808,7.115670
sequential,18000000,tcl_hash,3820351488,6.882462
sequential,22000000,LuaHashMap51,3028168704,1.174365
sequential,22000000,LuaHashMap52,3028176896,1.098794
sequential,22000000,stl_unordered_map,3636260864,2.219680
sequential,22000000,stl_unordered_map_string,3636264960,2.223367
sequential,22000000,perl_hash,6723231744,25.176477
sequential,22000000,python_dict,4040585216,2.058225
sequential,22000000,ruby_hash,3274719232,8.906782
sequential,22000000,tcl_hash,4080398336,7.736412
sequential,26000000,LuaHashMap51,3028168704,1.316276
sequential,26000000,LuaHashMap52,3028176896,1.225207
sequential,26000000,stl_unordered_map,3766284288,2.503562
sequential,26000000,stl_unordered_map_string,3766288384,2.510391
sequential,26000000,perl_hash,7377551360,28.480547
sequential,26000000,python_dict,4944457728,3.351114
sequential,26000000,ruby_hash,3471855616,11.812543
sequential,26000000,tcl_hash,4340445184,8.644097
sequential,30000000,LuaHashMap51,3028168704,1.462396
sequential,30000000,LuaHashMap52,3028176896,1.348921
sequential,30000000,stl_unordered_map,3896307712,2.759710
sequential,30000000,stl_unordered_map_string,3896311808,2.762075
sequential,30000000,perl_hash,8023474176,31.480212
sequential,30000000,python_dict,5043023872,3.554582
sequential,30000000,ruby_hash,3601879040,13.593264
sequential,30000000,tcl_hash,4592103424,9.469826
random,2000000,LuaHashMap51,2575183872,0.471764
random,2000000,LuaHashMap52,2575192064,0.479722
random,2000000,stl_unordered_map,2588708864,0.865458
random,2000000,stl_unordered_map_string,2588712960,0.867733
random,2000000,perl_hash,2864398336,1.632855
random,2000000,python_dict,2743463936,0.760286
random,2000000,ruby_hash,2565836800,2.762764
random,2000000,tcl_hash,2629148672,1.041728
random,6000000,LuaHashMap51,2826842112,1.416361
random,6000000,LuaHashMap52,2826850304,1.432211
random,6000000,stl_unordered_map,2824351744,3.371013
random,6000000,stl_unordered_map_string,2824355840,3.364630
random,6000000,perl_hash,3661332480,5.690908
random,6000000,python_dict,3243642880,2.836469
random,6000000,ruby_hash,2703212544,14.930411
random,6000000,tcl_hash,2914369536,3.595723
random,10000000,LuaHashMap51,3162386432,2.491089
random,10000000,LuaHashMap52,3162394624,2.566804
random,10000000,stl_unordered_map,3098075136,6.522637
random,10000000,stl_unordered_map_string,3098079232,6.509451
random,10000000,perl_hash,4507553792,10.817601
random,10000000,python_dict,3342209024,3.914401
random,10000000,ruby_hash,2850025472,32.139402
random,10000000,tcl_hash,3174420480,6.310335
random,14000000,LuaHashMap51,3162386432,4.031366
random,14000000,LuaHashMap52,3162394624,4.035855
random,14000000,stl_unordered_map,3227049984,7.825740
random,14000000,stl_unordered_map_string,3227054080,7.822155
random,14000000,perl_hash,5152432128,13.912362
random,14000000,python_dict,3842387968,6.646273
random,14000000,ruby_hash,3012558848,55.876184
random,14000000,tcl_hash,3560300544,11.503532
random,18000000,LuaHashMap51,3833475072,4.954498
random,18000000,LuaHashMap52,3833483264,5.093505
random,18000000,stl_unordered_map,3356041216,9.274427
random,18000000,stl_unordered_map_string,3356045312,9.304895
random,18000000,perl_hash,6149660672,21.816298
random,18000000,python_dict,3939905536,7.917813
random,18000000,ruby_hash,3141550080,73.125809
random,18000000,tcl_hash,3811962880,13.614751
random,22000000,LuaHashMap51,3833475072,6.534173
random,22000000,LuaHashMap52,3833483264,6.580426
random,22000000,stl_unordered_map,3633115136,14.571187
random,22000000,stl_unordered_map_string,3633119232,14.594532
random,22000000,perl_hash,6717988864,24.972562
random,22000000,python_dict,4037439488,9.230486
random,22000000,ruby_hash,3270524928,99.436454
random,22000000,tcl_hash,4063621120,16.001120
random,26000000,LuaHashMap51,3833475072,8.278695
random,26000000,LuaHashMap52,3833483264,8.231338
random,26000000,stl_unordered_map,3762089984,15.988346
random,26000000,stl_unordered_map_string,3762094080,15.987363
random,26000000,perl_hash,7361822720,28.313615
random,26000000,python_dict,4940263424,13.866396
random,26000000,ruby_hash,3466612736,139.655566
random,26000000,tcl_hash,4315279360,18.765522
random,30000000,LuaHashMap51,3833475072,10.305047
random,30000000,LuaHashMap52,3833483264,10.073807
random,30000000,stl_unordered_map,3890016256,17.499670
random,30000000,stl_unordered_map_string,3890020352,17.528212
random,30000000,perl_hash,8005648384,31.956939
random,30000000,python_dict,5037780992,15.302296
random,30000000,ruby_hash,3594539008,161.728001
random,30000000,tcl_hash,4566937600,21.649200
delete,2000000,LuaHashMap51,2575183872,0.103950
delete,2000000,LuaHashMap52,2575192064,0.110425
delete,2000000,stl_unordered_map,2532085760,0.209476
delete,2000000,stl_unordered_map_string,2532089856,0.208849
delete,2000000,perl_hash,2881449984,1.731090
item not found for key -1
item not found for key -1
item not found for key -1
delete,2000000,python_dict,2743463936,0.094557
delete,2000000,ruby_hash,2508165120,0.245707
delete,2000000,tcl_hash,2629148672,0.286168
delete,6000000,LuaHashMap51,2826842112,0.293896
delete,6000000,LuaHashMap52,2826850304,0.297876
delete,6000000,stl_unordered_map,2637705216,0.617305
delete,6000000,stl_unordered_map_string,2637709312,0.616651
delete,6000000,perl_hash,3709333504,5.179803
item not found for key -1
item not found for key -1
item not found for key -1
delete,6000000,python_dict,3244691456,0.284277
delete,6000000,ruby_hash,2516566016,0.732787
delete,6000000,tcl_hash,2914369536,0.922024
delete,10000000,LuaHashMap51,3162386432,0.527700
delete,10000000,LuaHashMap52,3162394624,0.523517
delete,10000000,stl_unordered_map,2781405184,1.020590
delete,10000000,stl_unordered_map_string,2781409280,1.017769
delete,10000000,perl_hash,4588605440,8.561205
item not found for key -1
item not found for key -1
item not found for key -1
delete,10000000,python_dict,3342209024,0.474463
delete,10000000,ruby_hash,2533355520,1.231060
delete,10000000,tcl_hash,3174420480,1.836607
delete,14000000,LuaHashMap51,3162386432,0.809310
delete,14000000,LuaHashMap52,3162394624,0.811588
delete,14000000,stl_unordered_map,2781405184,1.430342
delete,14000000,stl_unordered_map_string,2781409280,1.428966
delete,14000000,perl_hash,5274918912,13.299335
item not found for key -1
item not found for key -1
item not found for key -1
delete,14000000,python_dict,3843436544,0.661788
delete,14000000,ruby_hash,2566914048,1.601923
delete,14000000,tcl_hash,3568689152,2.123175
delete,18000000,LuaHashMap51,3833475072,1.208976
delete,18000000,LuaHashMap52,3833483264,1.050822
delete,18000000,stl_unordered_map,2929520640,1.834653
delete,18000000,stl_unordered_map_string,2929524736,1.831082
delete,18000000,perl_hash,6296809472,16.134514
item not found for key -1
item not found for key -1
item not found for key -1
delete,18000000,python_dict,3942002688,0.850941
delete,18000000,ruby_hash,2566930432,2.116701
delete,18000000,tcl_hash,3820351488,2.804883
delete,22000000,LuaHashMap51,3833475072,1.589213
delete,22000000,LuaHashMap52,3833483264,1.394732
delete,22000000,stl_unordered_map,2929520640,2.246563
delete,22000000,stl_unordered_map_string,2929524736,2.238153
delete,22000000,perl_hash,6899232768,20.604254
item not found for key -1
item not found for key -1
item not found for key -1
delete,22000000,python_dict,4040585216,1.039537
delete,22000000,ruby_hash,2566930432,2.624462
delete,22000000,tcl_hash,4080398336,3.628405
delete,26000000,LuaHashMap51,3833475072,1.957289
delete,26000000,LuaHashMap52,3833483264,1.733318
delete,26000000,stl_unordered_map,2929520640,2.658611
delete,26000000,stl_unordered_map_string,2929524736,2.643416
delete,26000000,perl_hash,7585554432,25.872034
item not found for key -1
item not found for key -1
item not found for key -1
delete,26000000,python_dict,4944457728,1.230226
delete,26000000,ruby_hash,2634043392,2.921459
delete,26000000,tcl_hash,4340445184,4.459541
delete,30000000,LuaHashMap51,3833475072,2.334962
delete,30000000,LuaHashMap52,3833483264,2.086686
delete,30000000,stl_unordered_map,2929520640,3.065733
delete,30000000,stl_unordered_map_string,2929524736,3.090584
delete,30000000,perl_hash,8263475200,30.902235
item not found for key -1
item not found for key -1
item not found for key -1
delete,30000000,python_dict,5043023872,1.418094
delete,30000000,ruby_hash,2634043392,3.430034
delete,30000000,tcl_hash,4592103424,5.305433
sequentialstring,2000000,LuaHashMap51,2673623040,1.727813
sequentialstring,2000000,LuaHashMap52,2656985088,1.729678
sequentialstring,2000000,stl_unordered_map,2491142144,0.360376
sequentialstring,2000000,stl_unordered_map_string,2654777344,1.763854
sequentialstring,2000000,perl_hash,2732277760,1.574917
sequentialstring,2000000,python_dict,2989674496,1.581611
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,2000000,tcl_hash,2629148672,0.608314
sequentialstring,6000000,LuaHashMap51,3155976192,5.943117
sequentialstring,6000000,LuaHashMap52,3139338240,5.968211
sequentialstring,6000000,stl_unordered_map,2491142144,1.089323
sequentialstring,6000000,stl_unordered_map_string,3019399168,6.592135
sequentialstring,6000000,perl_hash,3271258112,5.436724
sequentialstring,6000000,python_dict,3990081536,5.754700
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,6000000,tcl_hash,2914369536,1.873899
sequentialstring,10000000,LuaHashMap51,3754721280,10.822954
sequentialstring,10000000,LuaHashMap52,3738083328,10.898929
sequentialstring,10000000,stl_unordered_map,2491142144,1.832785
sequentialstring,10000000,stl_unordered_map_string,3423154176,12.623064
sequentialstring,10000000,perl_hash,3894116352,10.189070
sequentialstring,10000000,python_dict,4185247744,8.095491
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,10000000,tcl_hash,3174420480,3.072249
sequentialstring,14000000,LuaHashMap51,3949756416,14.802170
sequentialstring,14000000,LuaHashMap52,3933118464,14.899760
sequentialstring,14000000,stl_unordered_map,2491142144,2.577609
sequentialstring,14000000,stl_unordered_map_string,3748212736,15.092228
sequentialstring,14000000,perl_hash,4255895552,13.211183
sequentialstring,14000000,python_dict,5185589248,13.134343
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,14000000,tcl_hash,3568689152,4.713545
sequentialstring,18000000,LuaHashMap51,4950114304,21.372320
sequentialstring,18000000,LuaHashMap52,4933476352,21.348176
sequentialstring,18000000,stl_unordered_map,2491142144,3.338641
sequentialstring,18000000,stl_unordered_map_string,4221403136,25.279133
sequentialstring,18000000,perl_hash,5012967424,20.728887
sequentialstring,18000000,python_dict,5380886528,15.592989
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,18000000,tcl_hash,3820351488,6.056227
sequentialstring,22000000,LuaHashMap51,5145149440,25.341705
sequentialstring,22000000,LuaHashMap52,5128511488,25.508293
sequentialstring,22000000,stl_unordered_map,2491142144,4.069651
sequentialstring,22000000,stl_unordered_map_string,4546461696,27.666900
sequentialstring,22000000,perl_hash,5308665856,23.658194
sequentialstring,22000000,python_dict,5576314880,18.563419
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,22000000,tcl_hash,4080398336,7.364568
sequentialstring,26000000,LuaHashMap51,5340217344,29.610680
sequentialstring,26000000,LuaHashMap52,5323579392,29.815024
sequentialstring,26000000,stl_unordered_map,2491142144,4.811446
sequentialstring,26000000,stl_unordered_map_string,4871520256,30.143869
sequentialstring,26000000,perl_hash,5688283136,26.984167
sequentialstring,26000000,python_dict,7381962752,26.317395
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,26000000,tcl_hash,4340445184,8.626434
sequentialstring,30000000,LuaHashMap51,5535252480,34.309850
sequentialstring,30000000,LuaHashMap52,5518614528,34.414246
sequentialstring,30000000,stl_unordered_map,2491142144,5.560516
sequentialstring,30000000,stl_unordered_map_string,5196644352,32.681402
sequentialstring,30000000,perl_hash,6076260352,30.466829
sequentialstring,30000000,python_dict,7577518080,28.652792
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
sequentialstring,30000000,tcl_hash,4592103424,9.811277
randomstring,2000000,LuaHashMap51,2673623040,1.722451
randomstring,2000000,LuaHashMap52,2656985088,1.727878
randomstring,2000000,stl_unordered_map,2491142144,0.359566
randomstring,2000000,stl_unordered_map_string,2654777344,1.760843
randomstring,2000000,perl_hash,2732277760,1.591443
randomstring,2000000,python_dict,2989674496,1.565027
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,2000000,tcl_hash,2629148672,0.610021
randomstring,6000000,LuaHashMap51,3155976192,5.942093
randomstring,6000000,LuaHashMap52,3139338240,5.958750
randomstring,6000000,stl_unordered_map,2491142144,1.104140
randomstring,6000000,stl_unordered_map_string,3019399168,6.502605
randomstring,6000000,perl_hash,3271258112,5.411413
randomstring,6000000,python_dict,3990081536,5.790280
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,6000000,tcl_hash,2914369536,1.906481
randomstring,10000000,LuaHashMap51,3754721280,10.802425
randomstring,10000000,LuaHashMap52,3738083328,10.879119
randomstring,10000000,stl_unordered_map,2491142144,1.823502
randomstring,10000000,stl_unordered_map_string,3423154176,12.602807
randomstring,10000000,perl_hash,3894116352,10.152949
randomstring,10000000,python_dict,4185247744,8.157547
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,10000000,tcl_hash,3174420480,3.065965
randomstring,14000000,LuaHashMap51,3949756416,14.833766
randomstring,14000000,LuaHashMap52,3933118464,14.919726
randomstring,14000000,stl_unordered_map,2491142144,2.585631
randomstring,14000000,stl_unordered_map_string,3748212736,14.987338
randomstring,14000000,perl_hash,4255895552,13.256340
randomstring,14000000,python_dict,5185589248,13.200702
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,14000000,tcl_hash,3568689152,4.672440
randomstring,18000000,LuaHashMap51,4950114304,21.393463
randomstring,18000000,LuaHashMap52,4933476352,21.420134
randomstring,18000000,stl_unordered_map,2491142144,3.321839
randomstring,18000000,stl_unordered_map_string,4221403136,25.240947
randomstring,18000000,perl_hash,5012967424,20.783671
randomstring,18000000,python_dict,5380886528,15.537111
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,18000000,tcl_hash,3820351488,6.033852
randomstring,22000000,LuaHashMap51,5145149440,25.383697
randomstring,22000000,LuaHashMap52,5128511488,25.395595
randomstring,22000000,stl_unordered_map,2491142144,4.080374
randomstring,22000000,stl_unordered_map_string,4546461696,27.661515
randomstring,22000000,perl_hash,5308665856,23.955551
randomstring,22000000,python_dict,5576314880,18.466707
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,22000000,tcl_hash,4080398336,7.304035
randomstring,26000000,LuaHashMap51,5340217344,29.651584
randomstring,26000000,LuaHashMap52,5323579392,29.730379
randomstring,26000000,stl_unordered_map,2491142144,4.822342
randomstring,26000000,stl_unordered_map_string,4871520256,30.143042
randomstring,26000000,perl_hash,5688283136,27.117711
randomstring,26000000,python_dict,7381962752,26.320250
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,26000000,tcl_hash,4340445184,8.466778
randomstring,30000000,LuaHashMap51,5535252480,34.262557
randomstring,30000000,LuaHashMap52,5518614528,34.546728
randomstring,30000000,stl_unordered_map,2491142144,5.557337
randomstring,30000000,stl_unordered_map_string,5196644352,32.713243
randomstring,30000000,perl_hash,6076260352,30.389445
randomstring,30000000,python_dict,7577518080,28.633771
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
randomstring,30000000,tcl_hash,4592103424,9.716029
deletestring,2000000,LuaHashMap51,2673623040,1.187548
deletestring,2000000,LuaHashMap52,2656985088,1.177951
deletestring,2000000,stl_unordered_map,2491142144,0.356887
deletestring,2000000,stl_unordered_map_string,2532093952,1.415931
deletestring,2000000,perl_hash,2658103296,1.579838
deletestring,2000000,python_dict,2700333056,0.870747
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,2000000,tcl_hash,2629148672,0.450551
deletestring,6000000,LuaHashMap51,3155976192,3.721429
deletestring,6000000,LuaHashMap52,3139338240,3.728322
deletestring,6000000,stl_unordered_map,2491142144,1.082157
deletestring,6000000,stl_unordered_map_string,2637717504,4.246611
deletestring,6000000,perl_hash,3034046464,4.795591
deletestring,6000000,python_dict,3304378368,2.637897
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,6000000,tcl_hash,2914369536,1.358392
deletestring,10000000,LuaHashMap51,3754721280,6.439696
deletestring,10000000,LuaHashMap52,3738083328,6.615350
deletestring,10000000,stl_unordered_map,2491142144,1.806604
deletestring,10000000,stl_unordered_map_string,2781425664,7.021772
deletestring,10000000,perl_hash,3493871616,7.902783
deletestring,10000000,python_dict,3304509440,4.898266
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,10000000,tcl_hash,3174420480,2.318983
deletestring,14000000,LuaHashMap51,3949756416,9.899386
deletestring,14000000,LuaHashMap52,3933118464,9.874558
deletestring,14000000,stl_unordered_map,2491142144,2.546015
deletestring,14000000,stl_unordered_map_string,2781425664,10.171329
deletestring,14000000,perl_hash,3693662208,12.110771
deletestring,14000000,python_dict,4110012416,6.352585
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,14000000,tcl_hash,3568689152,3.219219
deletestring,18000000,LuaHashMap51,4950114304,12.441775
deletestring,18000000,LuaHashMap52,4933476352,12.423592
deletestring,18000000,stl_unordered_map,2491142144,3.283778
deletestring,18000000,stl_unordered_map_string,2929557504,12.901487
deletestring,18000000,perl_hash,4287700992,14.757453
deletestring,18000000,python_dict,4110274560,8.642732
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,18000000,tcl_hash,3820351488,4.161104
deletestring,22000000,LuaHashMap51,5145149440,15.920141
deletestring,22000000,LuaHashMap52,5128511488,15.990633
deletestring,22000000,stl_unordered_map,2491142144,4.023729
deletestring,22000000,stl_unordered_map_string,2929557504,16.049303
deletestring,22000000,perl_hash,4420362240,19.184065
deletestring,22000000,python_dict,4110471168,11.311837
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,22000000,tcl_hash,4080398336,5.308074
deletestring,26000000,LuaHashMap51,5340217344,19.625838
deletestring,26000000,LuaHashMap52,5323579392,19.495425
deletestring,26000000,stl_unordered_map,2491142144,4.755389
deletestring,26000000,stl_unordered_map_string,2929557504,19.185992
deletestring,26000000,perl_hash,4636946432,23.806100
deletestring,26000000,python_dict,5721083904,11.663961
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,26000000,tcl_hash,4340445184,6.123673
deletestring,30000000,LuaHashMap51,5535252480,23.620862
deletestring,30000000,LuaHashMap52,5518614528,23.517831
deletestring,30000000,stl_unordered_map,2491142144,5.513001
deletestring,30000000,stl_unordered_map_string,2929623040,22.536410
deletestring,30000000,perl_hash,4861886464,28.689526
deletestring,30000000,python_dict,5721604096,13.818240
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
ruby: [BUG] Segmentation fault
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
deletestring,30000000,tcl_hash,4592103424,7.130237