credis
v1.0.4
Published
customize redis
Downloads
2
Readme
CRedis
Customize Redis.
Installation
npm install credis
Usage
const redis = require('credis');
Different from NODE_ENV
You have to have a folder called config.And the config subdirectory is named with the environment variable.
Set
redis.set('key', 'value');
SetEx
// ten minutes
redis.setEx('key', 'value', 10 * 60);
Get
let value = await redis.get('key');