We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change cache configuration to redis
public $handler = 'redis';
The following is wrong:
Argument 1 passed to CodeIgniter\Cache\Handlers\RedisHandler::__construct() must be of the type array, object given, called in ...
RedisHandler.php modify these:
public function __construct($config) { $config = (array)$config; $this->prefix = $config['prefix'] ?? ''; if ( ! empty($config)) { $this->config = array_merge($this->config, $config); } }
Can run!
The text was updated successfully, but these errors were encountered:
Good catch. Care to submit a PR for this?
Sorry, something went wrong.
I've submitted a PR.
@jinmarcus I don't see any pull requests for this listed.
#792
8f7b233
No branches or pull requests
Change cache configuration to redis
The following is wrong:
RedisHandler.php
modify these:
Can run!
The text was updated successfully, but these errors were encountered: