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
@@ -218,12 +209,12 @@ This format is compatible with the HdrHistogram Java and C implementations.
218
209
219
210
Performance
220
211
-----------
221
-
Histogram value recording has the same cost characteristics than the Java version
212
+
Histogram value recording has the same cost characteristics than the original Java version
222
213
since it is a direct port (fixed cost for CPU and reduced memory usage).
223
-
Encoding and decoding in the python version is very fast thanks to the use of:
214
+
Encoding and decoding in the python version is very fast and close to native performance thanks to the use of:
224
215
225
-
- integrated C extensions that have been developed to handle the low-level byte encoding/decoding work at native speed
226
-
- native compression library (using zlib)
216
+
- integrated C extensions (native C code called from python) that have been developed to handle the low-level byte encoding/decoding/addition work at native speed
217
+
- native compression library (zlib and base64)
227
218
228
219
On a macbook pro (Intel Core i7 @ 2.3GHz) and Linux server (Intel(R) Xeon(R) CPU E5-2665 @ 2.40GHz):
229
220
@@ -232,17 +223,19 @@ On a macbook pro (Intel Core i7 @ 2.3GHz) and Linux server (Intel(R) Xeon(R) CPU
0 commit comments