|
4 | 4 | ; the default is On |
5 | 5 | memcached.sess_locking = On |
6 | 6 |
|
7 | | -; Session spin lock retry wait time in microseconds. |
8 | | -; Be carefull when setting this value. |
9 | | -; Valid values are integers, where 0 is interpreted as |
10 | | -; the default value. Negative values result in a reduces |
11 | | -; locking to a try lock. |
12 | | -; the default is 150000 |
13 | | -memcached.sess_lock_wait = 150000 |
14 | | - |
15 | | -; The maximum time, in seconds, to wait for a session lock |
16 | | -; before timing out. |
17 | | -; Setting to 0 results in default behavior, which is to |
18 | | -; use max_execution_time. |
19 | | -memcached.sess_lock_max_wait = 0; |
| 7 | +; !! DEPRECATED AND REMOVED in 3.x !! |
| 8 | +; memcached.sess_lock_wait = 150000 |
| 9 | + |
| 10 | +; !! DEPRECATED AND REMOVED in 3.x !! |
| 11 | +; memcached.sess_lock_max_wait = 0; |
| 12 | + |
| 13 | +; The minimum time, in milliseconds, to wait between session lock attempts. |
| 14 | +; This value is double on each lock retry until memcached.sess_lock_wait_max |
| 15 | +; is reached |
| 16 | +memcached.sess_lock_wait_min = 0; |
| 17 | + |
| 18 | +; The maximum time, in milliseconds, to wait between session lock attempts. |
| 19 | +memcached.sess_lock_wait_max = 0; |
20 | 20 |
|
21 | 21 | ; The time, in seconds, before a lock should release itself. |
22 | 22 | ; Setting to 0 results in the default behaviour, which is to |
@@ -105,11 +105,6 @@ memcached.compression_threshold = 2000 |
105 | 105 | ; The default is igbinary if available, then msgpack if available, then php otherwise. |
106 | 106 | memcached.serializer = "igbinary" |
107 | 107 |
|
108 | | -; Use SASL authentication for connections |
109 | | -; valid values: On, Off |
110 | | -; the default is Off |
111 | | -memcached.use_sasl = Off |
112 | | - |
113 | 108 | ; The amount of retries for failed store commands. |
114 | 109 | ; This mechanism allows transparent fail-over to secondary servers when |
115 | 110 | ; set/increment/decrement/setMulti operations fail on the desired server in a multi-server |
|
0 commit comments