# xorfilter_cpp **Repository Path**: mirrors_lemire/xorfilter_cpp ## Basic Information - **Project Name**: xorfilter_cpp - **Description**: Bloom filter alternative (C++) - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # xorfilter_cpp Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters (C++) ## Prerequisites - A C++11 compiler such as GNU G++ or LLVM Clang++ - Make ## Usage ``` cd benchmarks make ./bulk-insert-and-query.exe 10000000 ``` ## Where is your code? See src/xorfilter.h. This single header depends on src/hashutil.h. ## Credit The code is derived from https://github.com/efficient/cuckoofilter by Bin Fan et al.