File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+ ### [ 0.9.7] - 2020-04-07
2+
3+ * (Improvement) Implemented support for Unix paths as means to connect to a Redis server.
4+ * (Bugfix) Ensure RedisSessionHandler::read() always returns a string (contributed by [ therosco] ( https://github.com/therosco ) ).
5+ * (Docs) Acknowledged ` redis.session.locking_enabled ` INI directive from the native extension (starting from v4.1.0).
6+ * (Improvement) Updated versions of testing containers.
7+
18### [ 0.9.6] - 2018-03-31
29
310 * (Bugfix) Fixed regenerated sessions expiration date (contributed by [ @kavacky ] ( https://github.com/kavacky ) )
3138
3239 * Initial pre-release
3340
41+ [ 0.9.7 ] : https://github.com/1ma/RedisSessionHandler/compare/v0.9.6...v0.9.7
3442[ 0.9.6 ] : https://github.com/1ma/RedisSessionHandler/compare/v0.9.5...v0.9.6
3543[ 0.9.5 ] : https://github.com/1ma/RedisSessionHandler/compare/v0.9.4...v0.9.5
3644[ 0.9.4 ] : https://github.com/1ma/RedisSessionHandler/compare/v0.9.3...v0.9.4
Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ the Redis server, just like the vanilla phpredis session handler:
4040session.save_path = " localhost"
4141session.save_path = " localhost?timeout=2.5"
4242session.save_path = " tcp://1.2.3.4:5678?prefix=APP_SESSIONS:&database=2"
43+ session.save_path = " unix:///var/run/redis.sock"
44+ session.save_path = " /var/run/redis.sock?database=2"
4345```
4446
4547Available query params:
@@ -51,6 +53,8 @@ Available query params:
5153
5254Currently only a single host definition is supported.
5355
56+ Note than when connecting through a Unix socket the timeout is ignored.
57+
5458
5559## Known Caveats
5660
You can’t perform that action at this time.
0 commit comments