(no title)
Arcuru | 2 months ago
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.
rich_sasha|2 months ago
Append-only has many other benefits, including zero contention between many readers and (single) writers. In the vanilla version, writers still contend though.
hansvm|2 months ago