FASTER
FASTER copied to clipboard
Fast persistent recoverable log and key-value store + cache, in C# and C++.
Context that is lockable, plus has automatic epoch handling.
We would like to support a separate read cache in FASTER C++. The basic idea is to have a separate instance of the hybrid log that acts as the read...
I don't have much time to test and analyze all capability of this fascinating piece of work , but do need to know is it possible to use it in...
I'm currently evaluating Faster for use as a backend for a distributed system synchronized using raft. Is it currently possible to rollback uncommitted entries from FasterLog ?
Revise BumpEpoch to accommodate calling from both protected and unprotected contexts. Revise FasterLog completion logic to avoid epoch double-protect. From now on, users should assume that any trigger action associated...
The documentation seems to suggest (in the [Log Completion](https://microsoft.github.io/FASTER/docs/fasterlog-basics/#log-completion) section), that an iterator can check for log completion with the `Ended` property. However when a log is completed, it seems...
Prototype implementation for DPR and DARQ work.
While investigating failures of Netherite in customer code ([see here](https://github.com/Azure/azure-functions-durable-extension/issues/2603)) I noticed a stack trace where OOM exceptions were thrown from FASTER at a time when shutting down, which is...
Hi. I use FASTER as key-value cache with restore it after re-run application. And I have a problem with disk space. Steps to reproduce 1. Create store ``` var config...