HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/doc/node-cache-base/examples/
Upload File :
Current File : //proc/1784574/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