The FASTER KV is a concurrent key-value store + cache, that is designed for point lookups and heavy updates. FASTER supports data larger than memory, by leveraging fast external storage (local or cloud). It also supports consistent recovery using a fast non-blocking checkpointing technique, that lets applications trade-off performance for commit latency. It is available in C# and C++, and it is developed by Microsoft.
Questions tagged [fasterkv]
1 questions
3
votes
1 answer
Faster KV vs dictionary vs concurrent dictionary which one to use when only updating value of dictionary
Streaming live prices for stocks, each stock is key (int) and its value type is struct (not class)
Dictionary. This dictionary is initialized once with all keys, and updating (no new additions) values every millisecond randomly from…

Venkat B
- 73
- 4