diff options
author | Andrey Andreev <narf@devilix.net> | 2016-03-14 10:14:43 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-03-14 10:14:43 +0100 |
commit | 27b2c59fd43c0206d300bb7409b4d983215a3f65 (patch) | |
tree | dab38bd586010324c32576efcfae540d5c8c3634 /user_guide_src | |
parent | b4140a13778ad58ab570a3c9efffe402ef0bf160 (diff) | |
parent | d327a4fc32b507a44e418cdd4b6e2c63690bc5cc (diff) |
Merge pull request #4531 from masterklavi/redis_unixsocket
Removed socket_type option from Cache_redis
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/libraries/caching.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/caching.rst b/user_guide_src/source/libraries/caching.rst index a7081ec6b..81019c015 100644 --- a/user_guide_src/source/libraries/caching.rst +++ b/user_guide_src/source/libraries/caching.rst @@ -255,8 +255,6 @@ To use it, you need `Redis server and phpredis PHP extension <https://github.com Config options to connect to redis server must be stored in the application/config/redis.php file. Available options are:: - $config['socket_type'] = 'tcp'; //`tcp` or `unix` - $config['socket'] = '/var/run/redis.sock'; // in case of `unix` socket type $config['host'] = '127.0.0.1'; $config['password'] = NULL; $config['port'] = 6379; |