fix bench
This commit is contained in:
parent
2e64edd4e7
commit
dfed1b947e
|
@ -76,10 +76,10 @@ public class StringMapAdjustOrPutBenchmark {
|
||||||
if (REUSE) {
|
if (REUSE) {
|
||||||
iMap.clear();
|
iMap.clear();
|
||||||
} else {
|
} else {
|
||||||
map = new TObjectIntHashMap<String>();
|
iMap = new TObjectIntCustomHashMap<String>(new StringIdentityHashingStrategy());
|
||||||
}
|
}
|
||||||
for (long i = 0; i < PUT_OPERATIONS; i++) {
|
for (long i = 0; i < PUT_OPERATIONS; i++) {
|
||||||
iMap = new TObjectIntCustomHashMap<String>(new StringIdentityHashingStrategy());
|
iMap.adjustOrPutValue(values[(int) (i % NUMBER_OF_KEYS)], 1, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stopWatch.stop();
|
stopWatch.stop();
|
||||||
|
@ -93,10 +93,10 @@ public class StringMapAdjustOrPutBenchmark {
|
||||||
if (REUSE) {
|
if (REUSE) {
|
||||||
iMap.clear();
|
iMap.clear();
|
||||||
} else {
|
} else {
|
||||||
map = new TObjectIntHashMap<String>();
|
iMap = new TObjectIntCustomHashMap<String>(new IdentityHashingStrategy<String>());
|
||||||
}
|
}
|
||||||
for (long i = 0; i < PUT_OPERATIONS; i++) {
|
for (long i = 0; i < PUT_OPERATIONS; i++) {
|
||||||
iMap = new TObjectIntCustomHashMap<String>(new IdentityHashingStrategy<String>());
|
iMap.adjustOrPutValue(values[(int) (i % NUMBER_OF_KEYS)], 1, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stopWatch.stop();
|
stopWatch.stop();
|
||||||
|
|
Loading…
Reference in New Issue