Skip to content

Redis 연결 추가

Eunhak Lee requested to merge feat/redis into main
import { Redis } from './path/to/redis.js';

const result = await Redis.set('foo', 'bar');
console.log(result);  // "OK"

const fooValue = await Redis.get('foo');
console.log('foo is', fooValue);  // "foo is bar"
Edited by Eunhak Lee

Merge request reports

Loading