The Agentic Memory
for Autonomous AI
The unified database combining vectors, knowledge graphs, and structured data. The cognitive backbone your AI agents need. Microsecond retrieval, VelesQL, zero cloud dependency.
Why Agents Need More Than Vector Search
AI agents need three types of memory: semantic (what feels similar), episodic (what is factually connected), and structured (explicit knowledge). Traditional databases can't provide all three unified.
Traditional Vector DBs
- Vectors only, no relationships
Can't model factual connections
- 50-100ms latency per query
Network round-trips add up fast
- No offline, no data sovereignty
Your data on someone else's servers
VelesDB Agentic Memory
- Vector + Graph + Columns unified
Complete memory for AI agents
- 47µs search latency (10K, in-memory)
1000x faster than cloud alternatives
- Runs anywhere, works offline
Server, Browser, Mobile — your data stays local
| Metric | VelesDB | Cloud Vector DBs |
|---|---|---|
| Search Latency (10K) | 47µs * | 50-100ms |
| 10 Retrievals | ~0.5ms total | 500ms-1s total |
| Time to First Token | Instant | Noticeable delay |
* In-memory HNSW index, no WAL/persistence overhead. 10K synthetic vectors, 768D, Cosine, M=32, ef_c=400. Criterion.rs, i9-14900KF, Rust 1.94.1. April 2026. At scale (SIFT1M 1M×128D): 25.1x faster than Qdrant, 189x faster than Memgraph, 270x faster than ClickHouse.
Features
The complete memory system for autonomous AI agents
Semantic Memory (Vectors)
HNSW index with SIMD acceleration. What your agent perceives as similar. Multi-Query Fusion with RRF, Average, Maximum strategies.
Episodic Memory (Graph)
Native Knowledge Graph with nodes, edges, and the MATCH clause. What your agent knows is factually connected.
VelesQL - SQL + NEAR + MATCH
Unified query language for vectors (NEAR), graphs (MATCH), and structured data. No JSON DSL to learn.
Hybrid Search
Combine BM25 full-text, vector similarity, and graph traversal in a single query. Trigram Index 22-128x faster.
SIMD Native Performance
AVX-512/AVX2/NEON auto-detection. 24.7ns dot product for 768D (31.1 Gelem/s). 4-accumulator ILP kernels.
Run Anywhere
Server, CLI, Python, TypeScript, WASM, iOS, Android, Tauri. Same core, same performance.
Metadata-Only Collections
Lightweight collections without vectors for catalogs, configs, or text-only search. Memory efficient.
Advanced Quantization
PQ with OPQ rotation (configurable codebooks), SQ8 (4x), Binary (32x), RaBitQ. ADC search with SIMD lookup tables.
SIMD Performance (768D Vectors)
Raw SIMD kernel latency (single pair, no index overhead). AVX2 4-accumulator pipeline. i9-14900KF, Rust 1.94.1, Criterion.rs. April 3, 2026.
HNSW Recall Profiles (10K/128D)
| Mode | ef_search | Recall@10 | Latency P50 | vs v1.0 |
|---|---|---|---|---|
| Fast | 64 | 92.2% | 36µs | NEW |
| Balanced | 128 | 98.8% | 57µs | NEW |
| Accurate | 512 | 100% | 130µs | NEW |
| Perfect | 4096 | 100% | 200µs | NEW |
Native Rust benchmarks (no HTTP overhead). Run your own: cargo bench
In-memory HNSW index (no WAL/persistence). 10K synthetic random vectors, 128D, Cosine. M=32, ef_c=400 (auto params). Recall measured vs brute-force ground truth. i9-14900KF, 64GB DDR5, Rust 1.94.1, Criterion.rs, Windows 11 Pro. April 2026.
Use Cases
The cognitive backbone for autonomous AI
Agentic Memory
Complete memory system for autonomous agents: semantic (vectors), episodic (graph), and structured data in one unified store.
GraphRAG
Combine knowledge graph traversal with vector similarity for superior context retrieval. MATCH + NEAR in one query.
AI Desktop Apps
Build offline-capable AI applications with Tauri or Electron. Single binary, no server needed.
Browser Vector Search
Run vector search directly in the browser with WASM. Privacy-first, no backend required.
Mobile AI (iOS/Android)
Native SDKs for mobile with 32x memory compression via Binary Quantization.
Robotics & Autonomous Systems
Microsecond decision-making for real-time autonomous systems. Knowledge graph for world modeling.
On-Premises / Air-Gapped
Full data sovereignty for regulated industries. GDPR, HIPAA, PCI-DSS ready.
Multi-Agent Collaboration
CRDT-based memory synchronization for collaborative AI systems. Local-first, conflict-free merge.
Comparison
The only database with Vector + Graph + Columns
Looking for Agentic Memory?
| Feature | 🐺VelesDB | Qdrant | Milvus | Pinecone | pgvector |
|---|---|---|---|---|---|
| Architecture | Single Binary | Container | Cluster | SaaS | Postgres Ext |
| Search Latency (10K) | 47µs * | ~30ms | ~20ms | ~50ms | ~50ms |
| Knowledge Graph | Native MATCH | None | None | None | None |
| Setup Time | < 1 min | 5-10 min | 30+ min | 5 min | 15+ min |
| Binary Size | 6 MB | 100+ MB | GBs | N/A | Extension |
| Query Language | SQL (VelesQL) | JSON DSL | SDK | SDK | SQL |
| WASM/Browser | |||||
| Mobile SDK | |||||
| License | VelesDB Core 1.0 | Apache 2.0 | Apache 2.0 | Closed | PostgreSQL |
* In-memory HNSW, no WAL. 10K synthetic vectors, 768D, Cosine, M=32, ef_c=400. Criterion.rs on i9-14900KF, 64GB DDR5, Rust 1.94.1. April 2026. Competitor latencies include network overhead (client-server architecture). External benchmarks (SIFT1M 1M×128D): VelesDB 25.1x faster than Qdrant (kNN@10), 189x faster than Memgraph (BFS 1-hop), 270x faster than ClickHouse (columnar filter). Full results: github.com/cyberlife-coder/velesdb-benchmarks.
Why VelesDB for Agentic Memory
Get Started in 60 Seconds
Download, install, and run. No complex setup, no dependencies, no cloud accounts required.
cargo add velesdb-coreQuick Example
velesdb-server --data-dir ./my_datacurl -X POST localhost:8080/collections \
-H 'Content-Type: application/json' \
-d '{"name":"agent_memory","dimension":768,"metric":"cosine"}'curl -X POST localhost:8080/query \
-H 'Content-Type: application/json' \
-d '{"query":"SELECT * FROM agent_memory WHERE vector NEAR $v LIMIT 10","params":{"v":[0.1,0.2]}}'Ecosystem
Use VelesDB in your language, on your platform
Blog & Resources
Technical deep-dives, architecture decisions, and updates from the VelesDB team
Contribute to VelesDB
VelesDB is an open project looking for passionate people to join the adventure. If you believe in the future of agentic memory, let's talk.
Rust Engineer / Co-Founder
Take ownership of the VelesDB engine. You love Rust, systems programming, and building databases that push boundaries. Equity-based co-founder role.
Business Developer
Structure the go-to-market for VelesDB Premium. Developer relations, partnerships, and enterprise outreach.
What we offer
- A product that already works (not a slide deck)
- Significant equity (co-founder, not employee)
- Full technical freedom
- A founder with 20+ years of experience
Powered by VelesDB
Products and projects building on VelesDB's agentic memory engine
Join developers building autonomous AI with VelesDB's unified Vector + Graph + Column store
Join developers building autonomous AI with VelesDB's unified Vector + Graph + Column store