Redis 연결 추가
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
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"
feedback to tooltime@ajou.ac.kr or hwan@ajou.ac.kr