Post-Quantum Secure

Install Cachee

31-nanosecond cache reads. Post-quantum attestation. One command.

Direct Download

Manual install from GitHub Releases

Terminal
curl -L https://github.com/H33ai-postquantum/cachee-cli/releases/download/v0.1.0/cachee-0.1.0-aarch64-apple-darwin.tar.gz | tar xz
sudo mv cachee /usr/local/bin/

AWS Marketplace

Enterprise deployment with consolidated billing

Subscribe through AWS for consolidated billing and enterprise support.

View on AWS Marketplace

Quick Start

After installing, you are five commands away from sub-microsecond cache reads.

Terminal
cachee init              # Generate config + PQ keypair
cachee start             # Start daemon on port 6380
cachee set mykey "hello" FP abc123  # Store with computation fingerprint
cachee get mykey         # Retrieve value (31ns reads)
cachee getverified mykey # Full trust envelope (fingerprint + verification + provenance)
cachee bench             # Run built-in benchmark

That's it. Cachee is running on localhost:6380. Your PQ keypair is generated and ready for attestation.


Enable PQ Attestation

Turn on post-quantum cryptographic attestation for every cached entry.

Terminal
cachee attest --enable   # Every SET gets a 58-byte H33-74 receipt
                         # signed by ML-DSA-65 + FALCON-512 + SLH-DSA

Cache Poisoning Becomes Impossible

With attestation enabled, every cached entry carries a cryptographic proof of origin. Three independent post-quantum signature families -- ML-DSA (lattice), FALCON (NTRU lattice), and SLH-DSA (hash-based) -- must all be simultaneously broken to forge an entry. Cache poisoning becomes mathematically impossible.


Connect Your App

Cachee speaks RESP -- any Redis client works. Zero code changes.

RESP Protocol Compatible
Python
import redis

r = redis.Redis(host='localhost', port=6380)
r.set('session:abc', '{"user": "alice"}', ex=3600)
r.get('session:abc')  # 31ns via Cachee L0

Drop-in replacement. Point your existing Redis client at port 6380 instead of 6379. Your application code stays exactly the same -- Cachee handles PQ attestation, CacheeLFU eviction, and sub-microsecond reads transparently.

Ready for production?

Deploy Cachee across your infrastructure with enterprise support, SLAs, and consolidated AWS billing.