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
I am adding a redis server on my Typo3 instance, which uses this plugin, so I'm trying to move as many caches as possible into the redis service, but for this extension would be impossible without breaking the clear cache functionality.
Due to this extension use a custom cache backend class "ReverseProxyCacheBackend", which extends from Typo3DatabaseBackend, it forces the user to use a database backend, with no other option available.
Would it be possible to use a hook instead of extending a cache backend class?
Similar to what was done for this FrontendHook
Other possibility could be doing a decorator pattern instead of using inheritance
The text was updated successfully, but these errors were encountered:
I am adding a redis server on my Typo3 instance, which uses this plugin, so I'm trying to move as many caches as possible into the redis service, but for this extension would be impossible without breaking the clear cache functionality.
Due to this extension use a custom cache backend class "ReverseProxyCacheBackend", which extends from Typo3DatabaseBackend, it forces the user to use a database backend, with no other option available.
Would it be possible to use a hook instead of extending a cache backend class?
Similar to what was done for this FrontendHook
Other possibility could be doing a decorator pattern instead of using inheritance
The text was updated successfully, but these errors were encountered: