Socket
Socket
Sign inDemoInstall

apostrophe-caches-redis

Package Overview
Dependencies
6
Maintainers
14
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    apostrophe-caches-redis

Redis-based cache for the Apostrophe CMS


Version published
Maintainers
14
Install size
905 kB
Created

Readme

Source

This module enhances apostrophe-caches, the standard caching mechanism of Apostrophe, to use Redis rather than MongoDB.

To use it, first npm install it in your project:

npm install --save apostrophe-caches-redis

Then configure your modules like this:

    'apostrophe-caches-redis': {
      // *NO* OPTIONS HERE
    },
    'apostrophe-caches': {
      // OPTIONS GO HERE - we are actually "improving" this standard module
      redis: {
        // options for the redis npm module go here
      }
    }

As usual with Redis, if you specify no options, it will connect to Redis on your local machine.

See the redis npm module documentation for more information about the options available under the redis property. Note that the prefix option defaults to the shortname of your project. This allows more than one Apostrophe site to easily share a Redis database. If you do not want any prefix in Redis, you can set prefix explicitly to false.

Very important: your Redis-specific options go in the configuration for apostrophe-caches, NOT apostrophe-caches-redis. This module enhances the capabilities of apostrophe-caches, and the rest of Apostrophe just sees apostrophe-caches as usual. See the source for a great example of how to ship similar improvements for other core Apostrophe modules.

Sessions in Redis

You can do that too, and it greatly reduces the load on MongoDB. You don't need this module for that. See storing sessions in Redis.

Keywords

FAQs

Last updated on 17 Feb 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc