Cachee works with any cache backend—Redis, Memcached, DynamoDB, or custom HTTP. We add an AI-powered L1 cache layer that predicts access patterns and pre-warms data automatically.
Enter your phone number to get started. We'll send a verification code.
Select your cache type. Cachee adds an intelligent L1 layer on top of your existing infrastructure.
This helps us configure the optimal connection method. Private VPCs require network setup.
Configure the connection to your cache. We'll verify connectivity before proceeding.
Tell us about your requirements so Cachee can auto-configure compliance rules and optimal edge routing.
We've generated your API keys. Use these to authenticate requests from your application.
Choose your platform. The SDK automatically enables predictive caching through your verified cache connection.
npm install @cachee/sdk
import { Cachee } from '@cachee/sdk'; const cachee = new Cachee({ apiKey: process.env.CACHEE_API_KEY, }); // Use like Redis - Cachee handles the L1 cache layer await cachee.set('user:123', userData, { ex: 3600 }); const cached = await cachee.get('user:123');
Your cache is connected and verified. Review this checklist before going to production: