Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 603 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 603 Bytes

radixtree.net

C# implementations of radix trees, or space-optimised tries (see the Wikipedia article).

Radixtree.NET provides multiple radix-tree implementations for different use cases:

RadixTree

Implements ISet<string>

RadixTree<T>

Implements IDictionary<string, T>

ConcurrentRadixTree<T>

Implements IDictionary<string, T> and is thread-safe

Notes

The predecessor to this library was initially developed at Majako for use in nopCommerce to efficiently handle cache keys.