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
http://www.stashphp.com/Drivers.html#redis
The example code is wrong. Given:
// One Server $driver = new Stash\Driver\Redis(); $driver->setOptions(array('servers' => array('127.0.0.1', '6379')));
Should be:
// One Server $driver = new Stash\Driver\Redis(); $driver->setOptions(array('servers' => array(array('127.0.0.1', '6379'))));
Edit:
Same goes for Memcache Driver:
// One Server $driver = new Stash\Driver\Memcache(); $driver->setOptions(array('servers' => array('127.0.0.1', '11211')));
The text was updated successfully, but these errors were encountered:
This needs checking and a pull request being sent into https://github.com/tedious/www.stashphp.com
Sorry, something went wrong.
Ah I didn't realise the website was in a repo as well. If I find any more inconsistencies while traversing the docs I will create a PR there :)
No branches or pull requests
http://www.stashphp.com/Drivers.html#redis
The example code is wrong. Given:
Should be:
Edit:
Same goes for Memcache Driver:
The text was updated successfully, but these errors were encountered: