getWithToken( $key, $casToken, $flags ); } protected function getWithToken( $key, &$casToken, $flags = 0 ) { $val = wincache_ucache_get( $key ); $casToken = $val; if ( is_string( $val ) ) { $val = unserialize( $val ); } return $val; } public function set( $key, $value, $expire = 0, $flags = 0 ) { $result = wincache_ucache_set( $key, serialize( $value ), $expire ); /* wincache_ucache_set returns an empty array on success if $value was an array, bool otherwise */ return ( is_array( $result ) && $result === [] ) || $result; } protected function cas( $casToken, $key, $value, $exptime = 0 ) { return wincache_ucache_cas( $key, $casToken, serialize( $value ) ); } public function delete( $key ) { wincache_ucache_delete( $key ); return true; } public function merge( $key, $callback, $exptime = 0, $attempts = 10, $flags = 0 ) { if ( !is_callable( $callback ) ) { throw new Exception( "Got invalid callback." ); } return $this->mergeViaCas( $key, $callback, $exptime, $attempts ); } }