valkey-search is a C++ module which extends valkey with vector search and secondary indexing capabilities. It enables users to index and query data stored in Valkey using complex queries with filters while maintaining high performance and scalability.
142
stars
657
commits
C++
primary language
Sep 11, 2026
updated
Valkey-Search (BSD-3-Clause), provided as a Valkey module, is a high-performance Search engine optimized for AI-driven / Search / Analytics / Recommendation System related workloads. It delivers single-digit millisecond latency and high QPS, capable of handling billions of vectors with over 99% recall as part of vector searches. It also provides support for hybrid / pure non vector workloads including Numeric, Tag, and Full-text searches.
Valkey-Search allows users to create indexes and perform searches, incorporating complex filters. Users can index data using either Valkey Hash or Valkey-JSON data types. The vector queries support Approximate Nearest Neighbor (ANN) search with HNSW and exact matching using K-Nearest Neighbors (KNN).
FT.CREATE
FT.DROPINDEX
FT.INFO
FT._LIST
FT.SEARCH
FT.AGGREGATE
For a detailed description of the supported commands and configuration options, see the Command Reference.
For comprehensive examples, refer to the Quick Start Guide.
valkey-search supports both Standalone and Cluster modes. Query processing and ingestion scale linearly with CPU cores in both modes. For large storage requirements, users can leverage Cluster mode for horizontal scaling of the keyspace.
If replica lag is acceptable, users can achieve horizontal query scaling by directing clients to read from replicas.
valkey-search achieves high performance by storing vectors in-memory and applying optimizations throughout the stack to efficiently utilize the host resources, such as:
valkey-search supports hybrid queries, combining Vector Similarity Search with filtering on indexed fields, such as Numeric, Tag, and Text indexes.
There are two primary approaches to hybrid queries:
valkey-search uses a hybrid approach with a query planner that selects the most efficient query execution path between:
valkey-search includes an operational feature to mitigate issues in indexes. If set to true, index schema is loaded from rdb, but indexes are not loaded, they are created empty and will be re-filled by the backfill process.
The config is non-modifiable and should be provided to search module on load.
valkey-server --loadmodule /path/to/libsearch.so --skip-rdb-load yes
When enabled, vector indexes are rebuilt via the backfill process while non-vector indexes (TAG, NUMERIC) continue to work immediately.
sudo apt update
sudo apt install -y clangd \
build-essential \
g++ \
cmake \
libgtest-dev \
ninja-build \
libssl-dev \
clang-tidy \
clang-format \
libsystemd-dev
IMPORTANT: building valkey-search requires GCC version 12 or higher, or Clang version 16 or higher. For Debian/Ubuntu, in case a lower version of GCC is installed, you may upgrade to gcc/g++ 12 with:
sudo apt update
sudo apt install -y gcc-12 g++-12
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 1000
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 1000
sudo yum update
sudo yum install -y gcc \
gcc-c++ \
cmake \
gtest \
gtest-devel \
ninja-build \
openssl-devel \
clang-tidy \
clang-format \
systemd-devel
valkey-search uses CMake for its build system. To simplify, a build script is provided. To build the module, run:
./build.sh
To view the available arguments, use:
./build.sh --help
Run unit tests with:
./build.sh --run-tests
Install required dependencies (Ubuntu / Debian):
sudo apt update
sudo apt install -y lsb-release \
curl \
coreutils \
libsystemd-dev \
python3-pip \
python3.12-venv \
locales-all \
locales \
gpg
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt update
sudo apt-get install -y memtier-benchmark
Run the integration tests with:
./build.sh --run-integration-tests
To start Valkey with the module, use the --loadmodule option:
valkey-server --loadmodule /path/to/libsearch.so
To enable JSON support, load the JSON module as well:
valkey-server --loadmodule /path/to/libsearch.so --loadmodule /path/to/libjson.so
For optimal performance, valkey-search will match the number of worker threads to the number of CPU cores on the host. You can override this with:
valkey-server "--loadmodule /path/to/libsearch.so --reader-threads 64 --writer-threads 64"
For development purposes, it is recommended to use VSCode, which is already configured to run within a Docker container and is integrated with clang-tidy and clang-format. Follow these steps to set up your environment:
Install VSCode Extensions:
Dev Containers extension by Microsoft in VSCode.Remote - SSH by MicrosoftRemote Explorer by MicrosoftRun the dev container setup script
.devcontainer/setup.sh
Open the Repository in VSCode:
On your local machine, open the root directory of the cloned valkey-search repository in VSCode.
If the repository is located on a remote host:
Once connected, VSCode will open the repository in the context of the remote host.
(top 30 of 49)
C++
69.7%
Python
22.7%
C
4.3%
CMake
1.7%
Shell
1.5%
valkey-search is a C++ module which extends valkey with vector search and secondary indexing capabilities. It enables users to index and query data stored in Valkey using complex queries with filters while maintaining high performance and scalability.
142
stars
657
commits
C++
primary language
Sep 11, 2026
updated
Valkey-Search (BSD-3-Clause), provided as a Valkey module, is a high-performance Search engine optimized for AI-driven / Search / Analytics / Recommendation System related workloads. It delivers single-digit millisecond latency and high QPS, capable of handling billions of vectors with over 99% recall as part of vector searches. It also provides support for hybrid / pure non vector workloads including Numeric, Tag, and Full-text searches.
Valkey-Search allows users to create indexes and perform searches, incorporating complex filters. Users can index data using either Valkey Hash or Valkey-JSON data types. The vector queries support Approximate Nearest Neighbor (ANN) search with HNSW and exact matching using K-Nearest Neighbors (KNN).
FT.CREATE
FT.DROPINDEX
FT.INFO
FT._LIST
FT.SEARCH
FT.AGGREGATE
For a detailed description of the supported commands and configuration options, see the Command Reference.
For comprehensive examples, refer to the Quick Start Guide.
valkey-search supports both Standalone and Cluster modes. Query processing and ingestion scale linearly with CPU cores in both modes. For large storage requirements, users can leverage Cluster mode for horizontal scaling of the keyspace.
If replica lag is acceptable, users can achieve horizontal query scaling by directing clients to read from replicas.
valkey-search achieves high performance by storing vectors in-memory and applying optimizations throughout the stack to efficiently utilize the host resources, such as:
valkey-search supports hybrid queries, combining Vector Similarity Search with filtering on indexed fields, such as Numeric, Tag, and Text indexes.
There are two primary approaches to hybrid queries:
valkey-search uses a hybrid approach with a query planner that selects the most efficient query execution path between:
valkey-search includes an operational feature to mitigate issues in indexes. If set to true, index schema is loaded from rdb, but indexes are not loaded, they are created empty and will be re-filled by the backfill process.
The config is non-modifiable and should be provided to search module on load.
valkey-server --loadmodule /path/to/libsearch.so --skip-rdb-load yes
When enabled, vector indexes are rebuilt via the backfill process while non-vector indexes (TAG, NUMERIC) continue to work immediately.
sudo apt update
sudo apt install -y clangd \
build-essential \
g++ \
cmake \
libgtest-dev \
ninja-build \
libssl-dev \
clang-tidy \
clang-format \
libsystemd-dev
IMPORTANT: building valkey-search requires GCC version 12 or higher, or Clang version 16 or higher. For Debian/Ubuntu, in case a lower version of GCC is installed, you may upgrade to gcc/g++ 12 with:
sudo apt update
sudo apt install -y gcc-12 g++-12
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 1000
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 1000
sudo yum update
sudo yum install -y gcc \
gcc-c++ \
cmake \
gtest \
gtest-devel \
ninja-build \
openssl-devel \
clang-tidy \
clang-format \
systemd-devel
valkey-search uses CMake for its build system. To simplify, a build script is provided. To build the module, run:
./build.sh
To view the available arguments, use:
./build.sh --help
Run unit tests with:
./build.sh --run-tests
Install required dependencies (Ubuntu / Debian):
sudo apt update
sudo apt install -y lsb-release \
curl \
coreutils \
libsystemd-dev \
python3-pip \
python3.12-venv \
locales-all \
locales \
gpg
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt update
sudo apt-get install -y memtier-benchmark
Run the integration tests with:
./build.sh --run-integration-tests
To start Valkey with the module, use the --loadmodule option:
valkey-server --loadmodule /path/to/libsearch.so
To enable JSON support, load the JSON module as well:
valkey-server --loadmodule /path/to/libsearch.so --loadmodule /path/to/libjson.so
For optimal performance, valkey-search will match the number of worker threads to the number of CPU cores on the host. You can override this with:
valkey-server "--loadmodule /path/to/libsearch.so --reader-threads 64 --writer-threads 64"
For development purposes, it is recommended to use VSCode, which is already configured to run within a Docker container and is integrated with clang-tidy and clang-format. Follow these steps to set up your environment:
Install VSCode Extensions:
Dev Containers extension by Microsoft in VSCode.Remote - SSH by MicrosoftRemote Explorer by MicrosoftRun the dev container setup script
.devcontainer/setup.sh
Open the Repository in VSCode:
On your local machine, open the root directory of the cloned valkey-search repository in VSCode.
If the repository is located on a remote host:
Once connected, VSCode will open the repository in the context of the remote host.
(top 30 of 49)
C++
69.7%
Python
22.7%
C
4.3%
CMake
1.7%
Shell
1.5%