Comment by remram
2 days ago
Do you see any single user/desktop application that needs the kind of speed boasted in the README? The one you are trading durability for?
2 days ago
Do you see any single user/desktop application that needs the kind of speed boasted in the README? The one you are trading durability for?
When operations complete in 200ns instead of blocking for microseconds/milliseconds on fsync, you avoid thread pool exhaustion and connection queueing. Each sync operation blocks that thread until disk confirms - tying up memory, connection slots, and causing tail latency spikes.
With FeOxDB's write-behind approach:
For desktop apps, this means your KV store doesn't tie up threads that the UI needs. For servers, it means handling more users without scaling up.
The durability tradeoff makes sense when you realize most KV workloads are derived data that can be rebuilt. Why block threads and exhaust IOPS for fsync-level durability on data that doesn't need it?