Skip to content
impulseDOCS
Get Started

Cache — ImpulseCache

ImpulseCache is managed Valkey — Redis-compatible in-memory storage for sessions, rate limits, queues, and hot data. Shared on entry plans, dedicated from Launch up.

Any Redis client works with REDIS_URL from the Connect tab (TLS):

import Redis from 'ioredis';
const redis = new Redis(process.env.REDIS_URL);
await redis.set('greeting', 'hello', 'EX', 60);
import os, redis
r = redis.from_url(os.environ["REDIS_URL"])
r.incr("api:rate:user42")

Works with ioredis, node-redis, Predis, redis-py, Jedis, StackExchange.Redis, and framework integrations (Laravel, Rails, Django, Sidekiq, BullMQ, Celery).