5 releases

0.0.0-alpha2.1 Mar 20, 2023
0.0.0-alpha2.0 Mar 11, 2023
0.0.0-alpha1.0 Mar 10, 2023
0.0.0-alpha0.2 Mar 9, 2023
0.0.0-alpha0.1 Mar 8, 2023

#592 in Concurrency

Download history 2/week @ 2024-02-27 92/week @ 2024-03-05 27/week @ 2024-03-12

121 downloads per month

MIT license

21KB
432 lines

Seckoo

A concurrent Cuckoo Hash Table.

Current State

Currently Seckoo's CuckooHash is limited to a Single-Writer-Multi-Reader setup where keys and values both must implement Copy along with the usual Hash and Eq trait for keys. This is likely to change in the future, so that any key that implements Hash + Eq may be used.

Seckoo is also a fixed-capacity hash table, but this could also change in future iterations.

This crate and its API is thus still quite unstable and should be used with caution!

TODO

  • Vital
    • insert currently allows for multiple equal keys to exist in the table at the same time. Fix this!
      • Does it actually? If we search for a key, an empty bucket should mean that it is not in the list, as a keys should always try to insert themselves as early as possible. Once we allow for removing elements, then this will be a concern!
    • Changing bucket group items to *mut Bucket<K, V> would reduce the minimum allocation size, as the bucket array/Vec would be smaller.
  • Upgrade from SeqLock to a Pointer setup.
    • Change Bucket<K, V> to AtomicPointer<Bucket<K, V>>
    • Add garbage collection (crossbeam_epoch::Epoch).
    • Add Entry<'c, K, V, ...> type to give concurrent access to keys.
    • Remove WriteGuard<'c, K, V, ...> as it should not be needed anymore
  • Add additional methods (in pseudo Rust):
    • len(&self) -> usize
    • get_or_insert(&self, key: K, f: impl FnOnce() -> V) -> Entry<'c, K, V, ...>;
    • get_cloned(&self, key: &K) -> Option<V> where V: Clone; This is the default behavior now.
    • contains(&self, key: &K) -> bool;
  • Insertion/removal scheme:
    • How do we handle insertions when max capacity is reached?
      • Option (1): Have a recursion depth counter, that eventually just inserts the new item and does not attempt to re-insert the old item.
      • Option (2): We prevent insertion after the array is filled up by some fraction.
  • Hashing/How many Hashers?
    • How many hashers should we have?
    • Option (1): Use const generics to give users ability to choose.
    • Option (2): Use a fixed amount, maybe 2?
      • If we take advantage of this we can use one Hasher for the first index and the second Hasher to create a tag. We can then tag our pointers to make comparison easier, and use the tag XOR'd with the first hash to get the second index.
  • Improve code coverage
  • Add fuzzing
  • Add benches

Dependencies

~260KB