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
Is your feature request related to a problem? Please describe.
We used File Cache in a Docker image with read-only enabled.
This lead to an error when starting the application.
We tweaked the Dockerfile so that directory is writeable, but we wondered if could use another caching system - our system already has Redis available.
Moreover, a common cache could help improving performance.
Describe the solution you'd like
Extend the BaseCache to RedisCache, receiving Redis URL and credentials when instantiating the class.
Describe alternatives you've considered
Extending locally the class and consuming it. It works, but it seems something someone else could use as well.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
We used File Cache in a Docker image with read-only enabled.
This lead to an error when starting the application.
We tweaked the Dockerfile so that directory is writeable, but we wondered if could use another caching system - our system already has Redis available.
Moreover, a common cache could help improving performance.
Describe the solution you'd like
Extend the BaseCache to RedisCache, receiving Redis URL and credentials when instantiating the class.
Describe alternatives you've considered
Extending locally the class and consuming it. It works, but it seems something someone else could use as well.
The text was updated successfully, but these errors were encountered: