Back to Databend

Hashtable implementation in rust

src/common/hashtable/src/README.md

1.2.888-patch-8360 B
Original Source

Hashtable implementation in rust

This package is a port from its cpp implementation from [ClickHouse]. It is quite difficult to implement a high-performance hashtable from scratch. After comparing many implementations of hashtables, we found that ClickHouse's hashtable is the most suitable for OLAP systems. Therefore, we rewrote it into this Rust library.