if no variable exists, even if you specify an increment value, the result will be null.
if you're using this for a mutex, chk if its null, and if so, then ADD the variable.
![]() | Memcache::incrementDescriptionint Memcache::increment ( string key [, int value] )Memcache::increment() increments value of the item on the specified value. If item with key key was not numeric and cannot be converted to number, it will change it's value to value. Parameter value is optional. It's default value is 1.
Also you can use memcache_increment() function. See example below. Memcache::increment() returns new item's value on success or FALSE on failure. Memcache::increment() does not create an item if it didn't exist. See also Memcache::decrement(), Memcache::replace(). ![]()
16-Jun-2005 03:54
if no variable exists, even if you specify an increment value, the result will be null. | ![]() |