95530a6617
refs https://github.com/TryGhost/Toolbox/issues/515 - We don't have a good way to test TTL caches without setting up Redis in the environment - Adding in-memory cache adapter with TTL allows to run tests on CI without having to install Redis - Also, TTL in memory cache can be a great substitution for Redis-based caches on instances that have a lot of spare RAM and don't need to use Redis necessarily - MemoryTTL cache accepts two parameters "TTL" and "max" - TTL - is time in milliseconds to hold the value for in cache - max - is the maximum amount of items to keep in the cache - To use MemoryTTL cache specify following config in the cache section: ``` "adapters": { "cache": { "imageSizes": { "adapter": "MemoryTTL", "ttl": 3600 } } } ``` - Above config would apply MemoryTTL cache to imageSizes feature with TTL fo 3600 ms
29 lines
902 B
JSON
29 lines
902 B
JSON
{
|
|
"name": "@tryghost/adapter-cache-memory-ttl",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/adapter-cache-memory-ttl",
|
|
"author": "Ghost Foundation",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
|
"lint": "yarn lint:code && yarn lint:test",
|
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"c8": "7.13.0",
|
|
"mocha": "10.2.0",
|
|
"sinon": "15.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@isaacs/ttlcache": "1.2.1"
|
|
}
|
|
}
|