mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-01-07 09:27:27 -08:00
74eb5fa045
- `example/proxy` is new folder for `example_proxy`. - `riven` is new folder for the main riven lib. - Updated metadata to be an array and include HTTP method.
26 lines
409 B
JavaScript
26 lines
409 B
JavaScript
'use strict';
|
|
|
|
|
|
var Cache = module.exports = function Cache() {
|
|
this._cache = {};
|
|
};
|
|
|
|
|
|
Cache.prototype.put = function Cache_put(key, value) {
|
|
this._cache[key] = value;
|
|
};
|
|
|
|
|
|
Cache.prototype.get = function Cache_get(key) {
|
|
return this._cache[key];
|
|
};
|
|
|
|
|
|
Cache.prototype.del = function Cache_del(key) {
|
|
delete this._cache[key];
|
|
};
|
|
|
|
|
|
Cache.prototype.clear = function Cache_clear() {
|
|
this._cache = {};
|
|
};
|