Skip to content

Commit cf4d0ea

Browse files
committed
Update package.xml for release along with memcached.ini
1 parent 27ad33b commit cf4d0ea

File tree

2 files changed

+49
-18
lines changed

2 files changed

+49
-18
lines changed

memcached.ini

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
; the default is On
55
memcached.sess_locking = On
66

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;
2020

2121
; The time, in seconds, before a lock should release itself.
2222
; Setting to 0 results in the default behaviour, which is to
@@ -105,11 +105,6 @@ memcached.compression_threshold = 2000
105105
; The default is igbinary if available, then msgpack if available, then php otherwise.
106106
memcached.serializer = "igbinary"
107107

108-
; Use SASL authentication for connections
109-
; valid values: On, Off
110-
; the default is Off
111-
memcached.use_sasl = Off
112-
113108
; The amount of retries for failed store commands.
114109
; This mechanism allows transparent fail-over to secondary servers when
115110
; set/increment/decrement/setMulti operations fail on the desired server in a multi-server

package.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,42 @@ http://pear.php.net/dtd/package-2.0.xsd">
159159
<configureoption name="with-libmemcached-dir" default="no" prompt="libmemcached directory"/>
160160
</extsrcrelease>
161161
<changelog>
162+
<release>
163+
<stability>
164+
<release>beta</release>
165+
<api>beta</api>
166+
</stability>
167+
<version>
168+
<release>3.0.0</release>
169+
<api>3.0.0</api>
170+
</version>
171+
<date>2016-02-01</date>
172+
<notes>
173+
PHP7 release of memcached extension. Note that support for libmemcached 0.x series has been discontinued
174+
and the earliest actively tested version is 1.0.2. It is highly recommended to use version 1.0.18 of
175+
libmemcached.
176+
177+
API
178+
* set/get commands do not take cas or user flags parameters
179+
* get and getMulti commands take Memcached::GET_EXTENDED flag to retrieve user flags and cas tokens
180+
* Fixes getStats command to return all stats from all servers
181+
* Fixes allKeys command behaviour
182+
* Fixes error where cache callback for get command was not setting expiration time properly
183+
* Added server type to server list
184+
* Remove use_sasl ini-variable and initialise sasl as needed
185+
186+
Session handler
187+
* Session lock algorithm updated (new ini-values memcached.sess_lock_wait_min, memcached.sess_lock_wait_max and memcached.sess_lock_retries)
188+
* Session extension uses PHP allocators (still some work to do on the rest of the extension)
189+
* Ini-values take effect during session_start or session_regenerate_id
190+
* Fixes crash with session_regenerate_id (work-around for PHP bug)
191+
192+
Tests
193+
* Fix several broken tests
194+
195+
</notes>
196+
</release>
197+
162198
<release>
163199
<stability><release>stable</release><api>stable</api></stability>
164200
<version><release>2.2.0</release><api>2.2.0</api></version>

0 commit comments

Comments
 (0)