Official Redis for Vercel
Redis Cloud is the official managed cloud service for Redis, delivered by the team behind Redis. Add Redis to your Vercel project in minutes and start building with the standard Redis API.
One Redis database can handle common Vercel app jobs: caching, sessions, rate limiting, queues, real-time updates, AI memory, JSON documents, and vector search.
Start free, then scale to production without switching databases or APIs.
Start by connecting to your existing project and then run vercel link in the CLI to link to the project locally.
Run vercel env pull .env.development.local to make the latest environment variables available to your project locally.
npm install redisimport { createClient } from 'redis';import { NextResponse } from 'next/server';
const redis = await createClient().connect();
export const POST = async () => { // Fetch data from Redis const result = await redis.get("item"); // Return the result in the response return new NextResponse(JSON.stringify({ result }), { status: 200 });};Get started with Redis Cloud on Vercel
Before choosing a plan
See the Redis-Vercel setup guide for examples.