Vercel/src/platforms/redis.ts
2025-02-19 19:07:17 -06:00

9 lines
251 B
TypeScript

import { Redis } from '@upstash/redis';
import { HAS_REDIS_STORAGE } from '@/app/config';
const redis = HAS_REDIS_STORAGE ? Redis.fromEnv() : undefined;
export const testRedisConnection = () => redis
? redis.get('test')
: Promise.reject(false);