Top 20 NuGet bplus Packages
==CSharpTest.Net.Collections==
* BPlusTree - a fairly full featured IDictionary backed by a B+Tree on disk.
* BTreeDictionary - a fully in-memory IDictionary implemented by a B+Tree.
* BTreeList - an in-memory IList using a B+Tree for storage and access.
* LurchTable - Least Used Recently Concurre...
==CSharpTest.Net.BPlusTree==
This library is a fairly full featured IDictionary<TKey, TValue> implementation
backed by a B+Tree on disk. The instance is thread-safe and supports a form of
MVCC (Multi Version Concurancy Control) to support non-blocking reads. Great
for storing a local cache or use ...