-
Hi, This project looks very interesting to me but I'm wondering if it's any different from FASTERKV? From my reading it looks like you're trying to solve similar problems in a bit of a different way. I'm wondering which library to rely on for a future project (simple CDN). Regards |
Beta Was this translation helpful? Give feedback.
Answered by
koculu
Nov 11, 2024
Replies: 1 comment 1 reply
-
Hi, The keys in ZoneTree are ordered, that is the key difference. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
koculu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
FasterKV is a HashTable, and ZoneTree is a log structured merge tree. (LSM-Tree)
In other words, FasterKV is a Key-Value-Store. (KVS)
ZoneTree is an Ordered-Key-Value-Store. (OKVS)
The keys in ZoneTree are ordered, that is the key difference.