https://github.com/huangjiahua/neatlib
Some C++ utility library, especially on hash tables.
https://github.com/huangjiahua/neatlib
concurrency cxx hashtable library memory-safety
Last synced: 10 days ago
JSON representation
Some C++ utility library, especially on hash tables.
- Host: GitHub
- URL: https://github.com/huangjiahua/neatlib
- Owner: huangjiahua
- Created: 2019-03-13T05:12:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-01T07:15:27.000Z (almost 7 years ago)
- Last Synced: 2025-03-01T04:41:27.215Z (over 1 year ago)
- Topics: concurrency, cxx, hashtable, library, memory-safety
- Language: C++
- Homepage:
- Size: 95.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neatlib
*Huang Jiahua*
## Features
1. Fast and safe sequential hash table basic_hash_table.
2. Fast and safe wait-free concurrent hash table concurrent_hash_table.
## TODO
1. Add lock-free support to concurrent hash table.(partly done)
2. Achieve better memory reclamation policy (currently using reference counting).
## Building
- Currently the project don't need to be built, just include the the header file is enough.
- To build the test, use cmake:
```bash
mkdir build && cd build
cmake ..
```
## Requirements
- Boost smart pointer library.