plar / go-adaptive-radix-tree

Adaptive Radix Trees implemented in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Persistence?

mattkanwisher opened this issue · comments

Curious if you ever tried to make this data-structure persisted into a key value store?

Do you mean a simple save/load feature or full fledged key/value storage like Redis, RocksDB, DynamoDB, etc?

The save/load feature is pretty easy to implement, ART internal structures are simple.
Storages like Redis/RocksDB are pretty hard and require good amount of time/tests/resources to implement.