6 ms·
I just tried building some immutable data structures in Go: (https://github.com/dacapoday/smol https://github.com/dacapoday/smol) a kv store base on cow b+ tree
by dacapoday 9mo ago
I just tried building some immutable data structures in Go:
(https://github.com/dacapoday/smol https://github.com/dacapoday/smol)
a kv store base on cow b+ tree
- dacapoday 9mo agoIn-memory immuatable data structures seem to be only suitable for scenarios with large amounts of data and high concurrency. In most scenarios, this actually incurs a lot of additional copying overhead.