Skip to content

rafaelescrich/redvector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

539 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ RedVector

CI/CD License

High-Performance In-Memory Vector Database Built in Rust

RedVector is an in-memory vector database that combines Redis compatibility with advanced vector search capabilities. Built on a Redis-compatible server (rsedis-style) and the Redisearch platform, it targets predictable low-latency performance for AI applications, semantic search, RAG pipelines, and recommendation systems.

Project status (v0.1.0): Early development. Redis wire protocol and a large command subset are implemented; vector search (FT.* with --features vector-search) and optional REST/gRPC (--features full) work in-tree. Some README items below are roadmap or platform-crate capabilitiesβ€”see Roadmap and Current limitations.

Built on:

  • Redis-Compatible Server: RESP-based server in Rust derived from the rsedis lineageβ€”about 150 commands advertised via COMMAND, not full Redis parity with every edge case
  • Redisearch Platform Core: In-repo vector/HNSW stack; optional GPU, RVF2, and S3 exist as feature-gated modules in that crate and are not enabled by the main redvector crate’s full feature today
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                                                                              β”‚
β”‚   RedVector = In-Memory Vector DB + Redis Protocol + REST/gRPC APIs         β”‚
β”‚                                                                              β”‚
β”‚   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”    β”‚
β”‚   β”‚   Strings   β”‚   β”‚   Vectors   β”‚   β”‚   REST API  β”‚   β”‚  gRPC API   β”‚    β”‚
β”‚   β”‚   Lists     β”‚   β”‚   HNSW      β”‚   β”‚   Port 8888 β”‚   β”‚  Port 50051 β”‚    β”‚
β”‚   β”‚   Sets      β”‚   β”‚   Cosine    β”‚   β”‚   JSON      β”‚   β”‚  Protobuf   β”‚    β”‚
β”‚   β”‚   Hashes    β”‚   β”‚   Euclidean β”‚   β”‚ Qdrant-like  β”‚   β”‚ Qdrant-like  β”‚    β”‚
β”‚   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜    β”‚
β”‚                                                                              β”‚
β”‚   ONE SERVER β€’ 50+ CLIENT LANGUAGES β€’ THREE PROTOCOLS β€’ IN-MEMORY          β”‚
β”‚                                                                              β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

✨ Features

🎯 Core Vector Database Features

  • In-Memory Storage: All data and vectors stored in RAM for ultra-low latency
  • HNSW Index: Hierarchical Navigable Small World graph for fast approximate nearest neighbor search
  • Multiple Distance Metrics:
    • Cosine Similarity
    • Euclidean Distance
    • Inner Product
  • High-Dimensional Vectors: Support for vectors of any dimension
  • Real-Time Updates: Add, update, and delete vectors with instant index updates
  • Batch Operations: Efficient bulk insert and update operations

πŸ”΄ Redis Protocol Compatibility

  • ~150 commands: Broad rsedis-style subset on port 6379 (see COMMAND output); behavior may differ from Redis on persistence, replication, and admin commands
  • Data structures (representative):
    • Strings: GET, SET, MGET, MSET, INCR, DECR, APPEND, GETSET, STRLEN
    • Lists: LPUSH, RPUSH, LPOP, RPOP, LRANGE, LINDEX, LLEN, LTRIM
    • Sets: SADD, SREM, SMEMBERS, SINTER, SUNION, SDIFF, SCARD, SISMEMBER
    • Hashes: HSET, HGET, HMSET, HGETALL, HDEL, HKEYS, HVALS, HLEN
    • Sorted Sets: ZADD, ZRANGE, ZRANK, ZSCORE, ZREM, ZCARD, ZCOUNT
  • Pub/Sub: SUBSCRIBE, PUBLISH, PSUBSCRIBE, UNSUBSCRIBE
  • Transactions: MULTI, EXEC, DISCARD, WATCH for atomic operations
  • Persistence: RDB/AOF-related commands exist; durable RDB save / AOF rewrite to disk is still incomplete (see Current limitations)

πŸ” Vector Search Features (RediSearch Compatible)

Built on Redisearch Platform Core with HNSW indexing:

  • FT.CREATE: Create vector indexes; schema parsing is simplified (dimension from VECTOR(dim) in SCHEMA)
  • FT.ADD: Add documents with vector embeddings to the index
  • FT.SEARCH: KNN-style search; query vector as comma-separated floats (see tests / handler for options)
  • FT.INFO: Get detailed index information and statistics
  • FT.DROP: Delete indexes and collections
  • FT.DEL: Delete individual documents from indexes
  • HNSW Backend: Hierarchical Navigable Small World graph for fast approximate search
  • Multi-vector (RVF2): Optional in redisearch-platform-core (rvf2 feature); not wired through the default redvector binary features yet

🌐 REST API (Qdrant-inspired)

Implemented in src/api.rs when built with --features full (or api-server). JSON bodies/responses; not a full Qdrant clone.

  • Meta: GET /health, GET /api/info, GET / (HTML API docs)
  • Collections:
    • POST /api/collections/:name β€” create collection (JSON body)
    • GET /api/collections β€” list collections
    • GET /api/collections/:name β€” collection info
    • DELETE /api/collections/:name β€” delete collection
  • Points:
    • POST /api/collections/:name/points β€” upsert points (JSON body)
    • GET /api/collections/:name/search?vector=0.1,0.2,...&limit=10 β€” similarity search (query string, comma-separated floats)

Per-point GET/delete routes are not exposed yet.

πŸ”Œ gRPC API

  • VectorService: High-performance gRPC interface (port 50051)
  • Methods:
    • CreateCollection - Create new vector collection
    • Upsert - Insert or update vectors
    • Search - Perform similarity search
    • GetCollectionInfo - Retrieve collection metadata
    • DeleteCollection - Remove collection
  • Protobuf: Efficient binary protocol for maximum throughput

⚑ Performance Features

  • Zero GC Pauses: Pure Rust implementation eliminates garbage collection pauses in the server process
  • Concurrent Operations: Multi-threaded architecture for parallel processing
  • Memory Efficiency: In-memory structures tuned for embedding workloads
  • HNSW: Approximate nearest-neighbor search when hnsw-backend is enabled
  • GPU (roadmap / platform crate): Optional gpu-wgpu / gpu-cuda in redisearch-platform-coreβ€”not compiled into the default redvector full feature set
  • SIMD: Additional SIMD distance kernels are planned (see platform crate / ADRs); not the primary story for the main binary yet
  • LRU: Available in platform storage paths; integration depth depends on configuration and features

πŸ’Ύ Persistence & Durability

  • Redis-side RDB/AOF: Work in progress; do not rely on SAVE/BGSAVE/BGREWRITEAOF for production durability yet
  • redisearch-platform-core + redb: The platform crate includes redb-backed storage and related design; wiring and defaults for the top-level server are still evolving
  • S3 / object store: Optional s3 feature in the platform crate (AWS SDK), not enabled by redvector’s default full feature

πŸ”§ Developer Experience

  • Multi-Protocol Support: Use Redis clients, REST, or gRPC
  • Language Agnostic: Works with any language that has a Redis client
  • Docker Support: Easy deployment with containerization
  • Self-Hosted: Full control over your data and infrastructure
  • Open Source: Apache 2.0 licensed

πŸš€ Quick Start

Using Docker

docker build -t redvector:latest .
docker run -d -p 6379:6379 -p 8888:8888 -p 50051:50051 redvector:latest

Building from Source

# Clone
git clone https://github.com/rafaelescrich/redvector.git
cd redvector

# Build with all features (Redis + Vector Search + REST + gRPC)
cargo build --release --features full

# Run
./target/release/redvector

Output (with --features full):

πŸš€ RedVector v0.1.0 - Redis-Compatible Vector Database
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
πŸ”΄ Redis Protocol: localhost:6379
πŸ“Š REST API:       http://localhost:8888
πŸ”Œ gRPC API:       http://localhost:50051
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

With default features (no api-server), only the Redis port is started; build with --features full for REST and gRPC.

Connect with Any Redis Client

import redis
r = redis.Redis()

# Standard Redis commands work
r.set("hello", "world")
print(r.get("hello"))  # b'world'

# Vector search with FT.* commands
r.execute_command("FT.CREATE", "myindex", "SCHEMA", "embedding", "VECTOR(384)")
r.execute_command("FT.ADD", "myindex", "doc1", "1.0", "FIELDS", "vector", "0.1,0.2,...")
results = r.execute_command("FT.SEARCH", "myindex", "0.1,0.2,...")

Using REST API

# Create a collection
curl -X POST http://localhost:8888/api/collections/my_vectors \
  -H "Content-Type: application/json" \
  -d '{"vector_size": 384, "distance": "Cosine"}'

# Add vectors
curl -X POST http://localhost:8888/api/collections/my_vectors/points \
  -H "Content-Type: application/json" \
  -d '{
    "points": [
      {"id": 1, "vector": [0.1, 0.2, 0.3, ...]}
    ]
  }'

# Search (GET + comma-separated floats)
curl -G "http://localhost:8888/api/collections/my_vectors/search" \
  --data-urlencode "vector=0.1,0.2,0.3" \
  --data-urlencode "limit=10"

Using gRPC API

# Using grpcurl
grpcurl -plaintext localhost:50051 redvector.VectorService/CreateCollection \
  -d '{"name": "my_vectors", "vector_size": 384, "distance": "Cosine"}'

πŸ—οΈ Architecture

RedVector is built on two core components:

  1. Redis-Compatible Server (rsedis-style): RESP, core data structures, and a large command subset; persistence and replication are not complete
  2. Redisearch Platform Core: Library crate in this repo for vector/HNSW and optional GPU, RVF2, S3, redb-backed storageβ€”used by FT.* when vector-search is enabled

Important: With --features full, the REST/gRPC servers currently use a separate Database instance from the Redis acceptor path (see src/main.rs). Data ingested over Redis is not visible to REST/gRPC and vice versa until that wiring is unified.

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                    RedVector In-Memory Architecture                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚                                                                              β”‚
β”‚   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”                   β”‚
β”‚   β”‚ Redis Proto  β”‚   β”‚   REST API   β”‚   β”‚   gRPC API   β”‚                   β”‚
β”‚   β”‚  Port 6379   β”‚   β”‚  Port 8888   β”‚   β”‚  Port 50051  β”‚                   β”‚
β”‚   β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜                   β”‚
β”‚          β”‚                  β”‚                  β”‚                            β”‚
β”‚          β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                            β”‚
β”‚                             β–Ό                                               β”‚
β”‚   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚
β”‚   β”‚              Redisearch Platform Core                                β”‚   β”‚
β”‚   β”‚   β€’ HNSW (CPU) β€’ Optional GPU / RVF2 / redb / S3 (platform features)   β”‚   β”‚
β”‚   β”‚   β€’ Cosine / Euclidean / inner product (metric support varies by path) β”‚   β”‚
β”‚   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚
β”‚                             β”‚                                               β”‚
β”‚   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚
β”‚   β”‚         Redis-Compatible Key-Value Store (In-Memory)                 β”‚   β”‚
β”‚   β”‚    Strings β€’ Lists β€’ Sets β€’ Hashes β€’ Sorted Sets β€’ Pub/Sub          β”‚   β”‚
β”‚   β”‚    β€’ ~150 commands β€’ Transactions β€’ RDB/AOF (in progress)             β”‚   β”‚
β”‚   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚
β”‚                             β”‚                                               β”‚
β”‚   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚
β”‚   β”‚                       Persistence Layer                              β”‚   β”‚
β”‚   β”‚    β€’ RDB/AOF (WIP) β€’ redb / platform persistence (see crate features)   β”‚   β”‚
β”‚   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚
β”‚                                                                              β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

πŸ†š Comparison with Other Vector Databases

Feature RedVector Qdrant Milvus Pinecone pgvector
Type In-Memory Disk-based Hybrid Cloud PostgreSQL Extension
Language πŸ¦€ Rust πŸ¦€ Rust Go ? C
Redis Protocol βœ… ❌ ❌ ❌ ❌
REST API βœ… βœ… βœ… βœ… ❌
gRPC API βœ… βœ… βœ… ❌ ❌
No GC Pauses βœ… βœ… ❌ ? βœ…
Built-in Cache Partial (platform) ❌ ❌ ❌ ❌
Pub/Sub βœ… ❌ ❌ ❌ ❌
Transactions βœ… ❌ ❌ ❌ βœ…
Self-Hosted βœ… βœ… βœ… ❌ βœ…
Open Source βœ… βœ… βœ… ❌ βœ…
In-Memory βœ… ❌ Partial ❌ ❌

πŸ—ΊοΈ Roadmap

v0.1.0 β€” current release (in progress, not β€œdone”)

Shipped in source today:

  • Redis-compatible server (rsedis-style) with ~150 commands in COMMAND
  • FT.CREATE / FT.ADD / FT.SEARCH / FT.INFO / FT.DROP / FT.DEL behind --features vector-search (with hnsw-backend for HNSW in the main path)
  • Optional REST + gRPC in the same binary (--features full / api-server)
  • Docker image builds with --features full

Still open for v0.1.x (was incorrectly implied as finished before):

  • Single shared database between Redis and REST/gRPC (today: separate Database for APIsβ€”see src/main.rs)
  • Production persistence: complete RDB serialization/deserialization, real SAVE/BGSAVE to disk, AOF rewrite (several TODOs in command/src/command.rs)
  • Integration tests in CI for FT.*, REST, and gRPC (root crate currently runs 0 unit tests; add coverage over time)
  • REST parity: per-point get/delete, JSON search body if desired, distance metric plumbing (REST currently reports Cosine in listing)
  • Wire platform features into the default binary when ready: optional gpu-*, rvf2, s3 from redisearch-platform-core

v0.2.0 β€” GPU acceleration (platform + binary)

  • Enable and document gpu-wgpu / gpu-cuda (or gpu-all) from the platform crate in the main redvector feature set
  • GPU distance metrics and benchmarks
  • Flat / IVF on GPU (as feasible)

v1.0.0 β€” production ready

  • IVF-SQ8 / IVF-PQ and related compression paths where applicable
  • RVF2 / memory-mapped multi-vector workflows productized
  • Full-text search (RediSearch-style) if scoped
  • Hardening, fuzzing, and benchmark suite

v2.0.0 β€” enterprise (closed source) (vision)

  • Distributed clustering, replication, managed console

Current limitations

  • Split datastore when using full: Redis and HTTP/gRPC do not share one Database yet.
  • Persistence: treat the server as in-memory for production until RDB/AOF work is finished.
  • Compatibility: Redis clients work for many commands; do not assume identical semantics to Redis 7.x for every command.
  • Tests: run cargo test --all-features (and add crate/integration tests as they land); today the binary crate contributes no tests.

πŸ“š Documentation

Document Description
GPU Acceleration Plan GPU implementation roadmap
Architecture Advantages Why RedVector's design is unique
Docker Guide Container deployment

🀝 Contributing

Contributions are welcome! See our Architecture Decision Records for design context.

# Run tests (expand coverage over time)
cargo test --all-features

# Build with all features (Redis + FT.* + REST + gRPC)
cargo build --release --features full

# Run (optional config file as first arg)
./target/release/redvector

πŸ™ Acknowledgments

RedVector is inspired by and built upon the excellent work of the open-source community:

  • rsedis: Redis re-implemented in Rust by Sebastian Waisbrot. The rsedis project provided significant inspiration for the Redis-compatible server implementation.

  • RediSearch: A query and indexing engine for Redis, providing secondary indexing, full-text search, and vector similarity search. RediSearch's design and feature set inspired the vector search capabilities in RedVector.

We are grateful to the maintainers and contributors of these projects for their valuable work in the open-source ecosystem.


πŸ“„ License

Copyright (c) 2025–2026, Rafael Escrich

Licensed under the Apache License, Version 2.0. See LICENSE for details.


Built with πŸ¦€ Rust β€’ Powered by Redis-Compatible Server + Redisearch Platform β€’ In-Memory Vector Database

Documentation β€’ Issues β€’ Discussions

About

RedVector is an Redis-compatible in-memory vector database implemented in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages