Commit e9a33bb0 authored by Jim Fulton's avatar Jim Fulton

Corrected comment.

parent 740a4470
...@@ -28,7 +28,10 @@ ...@@ -28,7 +28,10 @@
# suffix to 6-byte data. This should reduce the overall memory usage to # suffix to 6-byte data. This should reduce the overall memory usage to
# 8-16 bytes per OID. # 8-16 bytes per OID.
# #
# Since the mapping from suffix to data contains at most 256 entries, # Because
# - the mapping from suffix to data contains at most 65535 entries,
# - this is an in-memory data structure
# - new keys are inserted sequentially,
# we use a BTree bucket instead of a full BTree to store the results. # we use a BTree bucket instead of a full BTree to store the results.
# #
# We use p64 to convert integers to 8-byte strings and lop off the two # We use p64 to convert integers to 8-byte strings and lop off the two
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment