Skip to content

Commit bedf3e8

Browse files
nolimitdevmichael-grunder
authored andcommitted
Update README.markdown
Fix incorrect syntax of php directives for session locking
1 parent 431b8d0 commit bedf3e8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.markdown

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ phpredis can also connect to a unix domain socket: `session.save_path = "unix://
6666
### Session locking
6767
Following INI variables can be used to configure session locking:
6868
~~~
69-
# Should the locking be enabled? Defaults to: 0.
70-
redis.session.locking_enabled: 1
71-
# How long should the lock live (in seconds)? Defaults to: value of max_execution_time.
72-
redis.session.lock_expire: 60
73-
# How long to wait between attempts to acquire lock, in microseconds (µs)?. Defaults to: 2000
74-
redis.session.lock_wait_time: 50000
75-
# Maximum number of times to retry (-1 means infinite). Defaults to: 10
76-
redis.session.lock_retries: 10
69+
; Should the locking be enabled? Defaults to: 0.
70+
redis.session.locking_enabled = 1
71+
; How long should the lock live (in seconds)? Defaults to: value of max_execution_time.
72+
redis.session.lock_expire = 60
73+
; How long to wait between attempts to acquire lock, in microseconds (µs)?. Defaults to: 2000
74+
redis.session.lock_wait_time = 50000
75+
; Maximum number of times to retry (-1 means infinite). Defaults to: 10
76+
redis.session.lock_retries = 10
7777
~~~
7878

7979
## Distributed Redis Array

0 commit comments

Comments
 (0)