Expand description
This is a simple lock free cache, implemented via a hash table following a cuckoo hashing scheme.
Structs§
- Cuckoo
Hash - A lock free hash table following a cuckoo hashing scheme.
- Iter
- A cloning iterator over the hash table.
Type Aliases§
- Cache
- A lock free cache. Cached values must implement
Clone
in order to be retrieved.