nodejs mongodb 缓存模块
2015年11月23日 · 32 字 · 1 分钟
项目地址
https://github.com/xialeistudio/mongodb-cache
项目说明
基于mongodb的nodejs缓存模块
使用
npm install xl-cache --save
var cache = require('xl-mongodb-cache');
- 连接服务器
cache.connect('mongodb://localhost:27017/app');
- 写入缓存
cache.set(key, value, duration).then(function(data) {
console.log(data);
}).catch(console.error);
- 读取缓存
cache.get(key).then(function(data) {
console.log(data);
}).catch(console.error);
- 删除缓存
cache.remove(key).then(function(data) {
console.log(data);
}).catch(console.error);