You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
I tested the latency PersistentSkipListMap and PersistentSkipListMap2. It looks PersistentSkipListMap is doing a better job than PersistentSkipListMap2 regarding the avg latency. What makes this difference? Which one is preferred?
I tested the latency PersistentSkipListMap and PersistentSkipListMap2. It looks PersistentSkipListMap is doing a better job than PersistentSkipListMap2 regarding the avg latency. What makes this difference? Which one is preferred?
Testing benchmark PersistentSkipListMap******
[Key Count 1000] avg lat:
DELETE : 151 (us)
CREATE : 158 (us)
GET : 74 (us)
UPDATE : 120 (us)
[Key Count 10000] avg lat:
DELETE : 71 (us)
CREATE : 130 (us)
GET : 143 (us)
UPDATE : 82 (us)
[Key Count 50000] avg lat:
DELETE : 102 (us)
CREATE : 117 (us)
GET : 45 (us)
UPDATE : 126 (us)
Testing benchmark PersistentSkipListMap2******
[Key Count 1000] avg lat:
DELETE : 201 (us)
CREATE : 214 (us)
GET : 64 (us)
UPDATE : 152 (us)
[Key Count 10000] avg lat:
DELETE : 122 (us)
CREATE : 198 (us)
GET : 68 (us)
UPDATE : 163 (us)
My Test code is below:
The text was updated successfully, but these errors were encountered: