contrie icon indicating copy to clipboard operation
contrie copied to clipboard

Concurrent hash trie

Results 5 contrie issues
Sort by recently updated
recently updated
newest added

This is somewhat open-ended task. There was nearly no performance analysis done and certainly no optimisation. We want to do some research in that area: - [ ] Write some...

enhancement
help wanted
Easy

Currently, the end data node is an array (well, SmallVec). It *usually* contains only a single element. In case we have a collision on the whole length of 64bit hash,...

enhancement
help wanted
Interesting

It would be nice if a user could customize the branching factor. Currently, the branching factor is configured by constants at the top of `raw/mod.rs` (`LEVEL_BITS`, `LEVEL_MASK`, `LEVEL_CELLS`, `MAX_LEVELS`). The...

enhancement
help wanted
good first issue
Easy

This is the more interesting part of rayon support (see #3), iterating through the maps and sets. It'll require some research around how exactly iterators for rayon work (`src/iter/map.rs` and...

enhancement
help wanted
Interesting

Currently, the structures don't allow snapshots or consistent iteration through them. This makes the code simpler and *probably* a bit faster (though that is hard to confirm without a way...

enhancement
help wanted