mqseries_cmit

(PECL mqseries >= 0.10.0) MQSeries MQCMIT void mqseries_cmit ( resource $hconn, resource &$compCode, resource &$reason ) The mqseries_cmit() (MQCMIT) call indicates to the queue manager that the application has reached a syncpoint, and that all of the message gets and puts that have occurred since the last syncpoint are to be made permanent. Messages put as part of a unit of work are made available to other appli

mqseries_close

(PECL mqseries >= 0.10.0) MQSeries MQCLOSE void mqseries_close ( resource $hconn, resource $hobj, int $options, resource &$compCode, resource &$reason ) The mqseries_close() (MQCLOSE) call relinquishes access to an object, and is the inverse of the mqseries_open() (MQOPEN) call. Parameters: hConn Connection handle. This handle represents the connection to the q

mqseries_begin

(PECL mqseries >= 0.10.0) MQseries MQBEGIN void mqseries_begin ( resource $hconn, array $beginOptions, resource &$compCode, resource &$reason ) The mqseries_begin() (MQBEGIN) call begins a unit of work that is coordinated by the queue manager, and that may involve external resource managers. Using mqseries_begin() starts the unit of work. Either mqseries_back() or mqseries_cmit() ends the unit of work.

mqseries_back

(PECL mqseries >= 0.10.0) MQSeries MQBACK void mqseries_back ( resource $hconn, resource &$compCode, resource &$reason ) The mqseries_back() (MQBACK) call indicates to the queue manager that all the message gets and puts that have occurred since the last syncpoint are to be backed out. Messages put as part of a unit of work are deleted; messages retrieved as part of a unit of work are reinstated on the queue. U

Memcached::touchByKey

(PECL memcached >= 2.0.0) Set a new expiration on an item on a specific server public bool Memcached::touchByKey ( string $server_key, string $key, int $expiration ) Memcached::touchByKey() is functionally equivalent to Memcached::touch(), except that the free-form server_key can be used to map the key to a specific server. Parameters: server_key The key identifying th

Memcached::touch

(PECL memcached >= 2.0.0) Set a new expiration on an item public bool Memcached::touch ( string $key, int $expiration ) Memcached::touch() sets a new expiration value on the given key. Parameters: key The key under which to store the value. expiration The expiration time, defaults to 0. See Expiration Times for more info.

Memcached::setSaslAuthData

(PECL memcached >= 2.0.0) Set the credentials to use for authentication public void Memcached::setSaslAuthData ( string $username, string $password ) Memcached::setSaslAuthData() sets the username and password that should be used for SASL authentication with the memcache servers. This method is only available when the memcached extension is built with SASL support. Please refer to Memcached setup for how to do this.

Memcached::setOptions

(PECL memcached >= 2.0.0) Set Memcached options public bool Memcached::setOptions ( array $options ) Memcached::setOptions() is a variation of the Memcached::setOption() that takes an array of options to be set. Parameters: options An associative array of options where the key is the option to set and the value is the new value for the option. Retur

Memcached::setOption

(PECL memcached >= 0.1.0) Set a Memcached option public bool Memcached::setOption ( int $option, mixed $value ) This method sets the value of a Memcached option. Some options correspond to the ones defined by libmemcached, and some are specific to the extension. See Memcached Constants for more information. The options listed below require values specified via constants. Memcached::OPT_HASH requires Memcached::HASH_*

Memcached::setMultiByKey

(PECL memcached >= 0.1.0) Store multiple items on a specific server public bool Memcached::setMultiByKey ( string $server_key, array $items [, int $expiration ] ) Memcached::setMultiByKey() is functionally equivalent to Memcached::setMulti(), except that the free-form server_key can be used to map the keys from items to a specific server. This is useful if you need to keep a bunch of related keys on a certain server.