Arroy is an open-source library for efficient similarity search and management of vector embeddings, useful in vector database systems.
KGraph is an open-source library for fast approximate nearest neighbor search in high-dimensional vector spaces, applicable to vector database solutions.
Puck is an open-source vector search engine designed for fast similarity search and retrieval of embedding vectors.
PostgreSQL supports vector indexing and similarity search via the PGVector extension, allowing relational databases to manage and retrieve vector embeddings efficiently.
Qdrant is a dedicated vector database and similarity search engine supporting advanced filtering and efficient retrieval, suitable for faceted search and retrieval-augmented generation. It offers self-hosted and cloud deployment options, making it highly relevant for vector search applications.
RediSearch is a Redis module that provides high-performance vector search and similarity search capabilities on top of Redis, enabling advanced search and retrieval features for AI and data applications.
Source: https://github.com/meilisearch/arroy
Category: open-sources
Tags: open-source, vector-embeddings, similarity-search, vector-search
Arroy is an open-source Rust library for efficient similarity search and management of vector embeddings, designed for use in vector database systems. It provides an interface similar to the Annoy Python library and is optimized for memory usage by leveraging LMDB as its backend storage. This allows multiple processes to share and atomically modify the same data.
n_trees: Number of trees used in the index (affects memory and accuracy).search_k: Number of nodes to inspect during a search (affects speed and recall).search_k is not provided, it defaults to n * n_trees where n is the number of neighbors to search for.Arroy is open-source software, free to use under the MIT license.