update readme

This commit is contained in:
Randall Schmidt
2021-06-11 13:04:55 -04:00
parent 831440152a
commit 7779114055
6 changed files with 18 additions and 23 deletions

View File

@ -26,4 +26,4 @@ module.exports = class FileSystemCache {
this.keyTimeout.updateTimeout(key, this.ttl, () => this.remove(key));
}
}
}
};

View File

@ -13,4 +13,4 @@ module.exports = class KeyTimeout {
callback();
}, durationMs);
}
}
};

View File

@ -4,14 +4,7 @@ module.exports = class MemoryCache {
constructor(options = {}) {
this.ttl = options.ttl;
this.keyTimeout = new KeyTimeout();
if (options.global && !globalThis.nodeFetchCache) {
globalThis.nodeFetchCache = {};
}
this.cache = options.global
? globalThis.nodeFetchCache
: {};
this.cache = {};
}
get(key) {
@ -30,4 +23,4 @@ module.exports = class MemoryCache {
this.keyTimeout.updateTimeout(key, this.ttl, () => this.remove(key));
}
}
}
};

View File

@ -1,4 +1,3 @@
const fs = require('fs');
const stream = require('stream');
const Headers = require('./headers.js');