You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports={// Step 1: Configure the redis connection// @see https://github.com/strapi-community/strapi-plugin-redisredis: {// ...},// Step 2: Configure the redis cache plugin"rest-cache": {config: {provider: {name: "redis",options: {max: 32767,connection: "default",},},strategy: {// if you are using keyPrefix for your Redis, please add <keysPrefix>keysPrefix: "<redis_keyPrefix>",contentTypes: [// list of Content-Types UID to cache"api::category.category","api::article.article","api::global.global","api::homepage.homepage",],},},},};
is the max setting in mb/kb/gb?
The text was updated successfully, but these errors were encountered:
Max denotes the maximum number of entries that the cache can take in. By default, this number is set to 32767.
So to answer your question, the measure unit is number of entries. Hope that helps you, I was also wondering what this means and I think it should be mentioned in the docs 😄
Hello,
when using the configuration,
is the max setting in mb/kb/gb?
The text was updated successfully, but these errors were encountered: