Replies: 0
I’m trying to set “redis” as my “Minify Cache Method” or “minify.engine” and it’s throwing errors because it’s trying to use Memcached for some reason… Upon further investigation it appears as though in “Minify_MinifiedFileRequestHandler.php” on line 659 it’s attempting to pass redis configuration options to a new Cache_Memcached
instance, which seems like a bug/error to me since I’m trying to use redis not memcached. In other areas of code, such as in “Cache.php”, it looks like these same configuration options are usually passed to the Cache_Redis
class instead.