DIR: /proc/1991111/root/usr/share/doc/node-cache-base/examples/ |
Current File : //proc/1991111/root/usr/share/doc/node-cache-base/examples/del.js |
const CacheBase = require('..'); const app = new CacheBase(); // app.on('del', key => app.set(key, app.default(key))); app.set('foo', 'xxx'); app.default('foo', 'one'); console.log(app.get('foo')); //=> 'xxx' console.log(app.cache.foo); //=> 'xxx' app.del('foo'); console.log(app.get('foo')); //=> 'xxx' console.log(app.cache.foo); //=> undefined |