|
|
|
|
|
by Arcuru
186 days ago
|
|
> Time-Travel Queries: Query historical data at any point in time: The example here looks like it may be storing the full history of transactions? Is that right? That's a pretty high cost to pay for something that's not touted as a marquee feature. I'm working on a DB[1] that stores full transaction history but it's so that I can support decentralized synchronization. It's in service of my marquee feature so I need to pay the cost of storing history, but I'm surprised that Stoolap also seems to be doing it for a local embedded database. [1] https://github.com/arcuru/eidetica |
|
Append-only has many other benefits, including zero contention between many readers and (single) writers. In the vanilla version, writers still contend though.