Ghost/ghost/adapter-cache-redis
Naz 7c18263227 Extracted adapter-cache-redis from core codebase
refs https://github.com/TryGhost/Toolbox/issues/515

- This implementation allows to use Redis cluster as a caching adapter. The cache adapter can be configured through same adapter configuration interface as others. It accepts following config values:
  - "ttl" - time in SECONDS for stored entity to live in Redis cache
  - "keyPrefix" - special cache key prefix to use with stored entities
  - "host" / "port" / "password" / "clusterConfig" - Redis instance specific configs
- Set test coverage to non-standard 75% because the code mostly consists of the glue code that would require unnecessary Redis server mocking and would be a bad ROI. This module has been used in production for a long time already, so can be considered pretty stable.
2023-02-13 19:01:43 +08:00
..
lib Extracted adapter-cache-redis from core codebase 2023-02-13 19:01:43 +08:00
test Extracted adapter-cache-redis from core codebase 2023-02-13 19:01:43 +08:00
.eslintrc.js Added adapter-cache-redis package 2023-02-13 19:01:43 +08:00
index.js Added adapter-cache-redis package 2023-02-13 19:01:43 +08:00
package.json Extracted adapter-cache-redis from core codebase 2023-02-13 19:01:43 +08:00
README.md Added adapter-cache-redis package 2023-02-13 19:01:43 +08:00

Adapter Cache Redis

Redis based cache adapter with support of Redis cluster

Usage

Develop

This is a monorepo package.

Follow the instructions for the top-level repo.

  1. git clone this repo & cd into it as usual
  2. Run yarn to install top-level dependencies.

Test

  • yarn lint run just eslint
  • yarn test run lint and tests