frostfs-node/pkg/local_object_storage/pilorama
Evgenii Stratonikov 8cf71b7f1c [#1324] local_object_storage: Implement tree service backend
In this commit we implement algorithm for CRDT trees from
https://martin.klepmann.com/papers/move-op.pdf

Each tree is identified by the ID of a container it belongs to
and the tree name itself. Essentially, it is a sequence of operations
which should be applied in chronological order to get a usual tree
representation.

There are 2 backends for now: bbolt database and in-memory.
In-memory backend is here for debugging and will eventually act
as a memory-cache for the on-disk database.

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
2022-07-21 15:08:24 +03:00
..
boltdb.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
forest.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
forest_test.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
inmemory.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
interface.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
meta.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
meta_test.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00
types.go [#1324] local_object_storage: Implement tree service backend 2022-07-21 15:08:24 +03:00