How to add new method in Opencart 2 – Redis
Why when i try to call $this->cache->keys('*') method in any controller im getting error: Uncaught Error: Call to undefined method Cache::keys() in /catalog/controller/product/category.php When i call $this->cache->set($key, $value) or $this->cache->get($key) methods in any controller they work fine. How to make…