Slater – Low-memory graphdb designed for read-heavy graphs
rickkjp
38 points
10 comments
July 21, 2026
Related Discussions
Found 5 related stories in 306.8ms across 14,369 title embeddings via pgvector HNSW
- Grafeo – A fast, lean, embeddable graph database built in Rust 0x1997 · 204 pts · March 21, 2026 · 56% similar
- Show HN: A memory database that forgets, consolidates, and detects contradiction pranabsarkar · 47 pts · April 14, 2026 · 53% similar
- Show HN: HelixDB – A graph database built on object storage GeorgeCurtis · 106 pts · June 10, 2026 · 52% similar
- A type-safe, realtime collaborative Graph Database in a CRDT phpnode · 157 pts · April 21, 2026 · 52% similar
- Asami: A flexible graph store, written in Clojure tosh · 28 pts · May 08, 2026 · 51% similar
Discussion Highlights (2 comments)
rickkjp
Hi all - I just wanted to announce a low memory footprint FOSS graph db I've been working on (named Slater, after the Archer character). The most common complaint about Graph/GraphRAG DBs is the cost and memory footprint they consume: many depend on holding the whole dataset fully in RAM, which makes them expensive to run. Slater starts with the premise of a fixed memory budget applied to an LRU cache of what's on disk, then uses ISAM blocks and DiskANN/Vamana/PQ to allow paging the contents of the graphs and vectors you need into that cache. It's designed around read-heavy-write-light cases, and can be backed either by local disk or by S3/GCS buckets with an optional sized local disk L2 cache as well. Speaks standard Bolt, and is GDPR friendly (encryption at-rest and in-transit). Multi-user-multi-graph with ACLs, Rust-with-forbid-unsafe and NFS-friendly too (no mmaps). It's Apache licensed. Please give it a try if you get a chance. Would love any suggestions or feedback. Full disclosure: yes, it was authored by Claude Code, although I provided the storage model and design it used, along with code samples and influences from other open source projects like FalkorDB and Memgraph for Bolt wire-compatibility. Thanks
pbronez
How does "standard Bolt" relate to OpenCypher? Does Bolt support imply OpenCypher support?