ghost
Version:
The professional publishing platform
37 lines (29 loc) • 623 B
JavaScript
const Base = require('@tryghost/adapter-base-cache');
class MemoryCache extends Base {
constructor() {
super();
this._data = {};
}
get(key) {
return this._data[key];
}
/**
*
* @param {String} key
* @param {*} value
*/
set(key, value) {
this._data[key] = value;
}
reset() {
this._data = {};
}
/**
* Helper method to assist "getAll" type of operations
* @returns {Array<String>} all keys present in the cache
*/
keys() {
return Object.keys(this._data);
}
}
module.exports = MemoryCache;