├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── deploy-docs.yml │ ├── publish.yml │ ├── run-tests.yml │ └── test-deploy-docs.yml ├── .gitignore ├── .markdownlint.json ├── .npmignore ├── .npmrc ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── api │ │ ├── client.md │ │ ├── config.md │ │ ├── connections.md │ │ └── intro.md │ ├── best-practices.md │ ├── faq.md │ ├── installation.md │ ├── introduction.md │ ├── plugins │ │ └── rest-cache.md │ └── redis │ │ ├── basic.md │ │ ├── cluster.md │ │ ├── intro.md │ │ ├── redlock.md │ │ ├── sentinel.md │ │ └── tls-auth.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ └── css │ │ └── custom.css ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── yarn.lock ├── package.json ├── server ├── config │ └── index.js ├── index.js ├── register.js └── services │ ├── connection.js │ └── index.js ├── strapi-server.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.github/workflows/test-deploy-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/api/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/api/client.md -------------------------------------------------------------------------------- /docs/docs/api/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/api/config.md -------------------------------------------------------------------------------- /docs/docs/api/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/api/connections.md -------------------------------------------------------------------------------- /docs/docs/api/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/api/intro.md -------------------------------------------------------------------------------- /docs/docs/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/best-practices.md -------------------------------------------------------------------------------- /docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/faq.md -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/introduction.md -------------------------------------------------------------------------------- /docs/docs/plugins/rest-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/plugins/rest-cache.md -------------------------------------------------------------------------------- /docs/docs/redis/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/redis/basic.md -------------------------------------------------------------------------------- /docs/docs/redis/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/redis/cluster.md -------------------------------------------------------------------------------- /docs/docs/redis/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/redis/intro.md -------------------------------------------------------------------------------- /docs/docs/redis/redlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/redis/redlock.md -------------------------------------------------------------------------------- /docs/docs/redis/sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/redis/sentinel.md -------------------------------------------------------------------------------- /docs/docs/redis/tls-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docs/redis/tls-auth.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/package.json -------------------------------------------------------------------------------- /server/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/server/config/index.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/server/index.js -------------------------------------------------------------------------------- /server/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/server/register.js -------------------------------------------------------------------------------- /server/services/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/server/services/connection.js -------------------------------------------------------------------------------- /server/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/server/services/index.js -------------------------------------------------------------------------------- /strapi-server.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./server'); 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi-community/plugin-redis/HEAD/yarn.lock --------------------------------------------------------------------------------