PHP 8.5.0 Alpha 2 available for testing

Memcached::setMultiByKey

(PECL memcached >= 0.1.0)

Memcached::setMultiByKeyAlmacena varios elementos en un servidor

Descripción

public Memcached::setMultiByKey(string $server_key, array $items, int $expiration = 0): bool

Memcached::setMultiByKey() es el equivalente funcional de Memcached::setMulti(), con la excepción de que el argumento libre server_key puede ser utilizado para dirigir las claves de items hacia un servidor específico. Esto es útil si se desea mantener ciertas claves agrupadas en un solo servidor.

Parámetros

server_key

The key identifying the server to store the value on or retrieve it from. Instead of hashing on the actual key for the item, we hash on the server key when deciding which memcached server to talk to. This allows related items to be grouped together on a single server for efficiency with multi operations.

items

An array of key/value pairs to store on the server.

expiration

The expiration time, defaults to 0. See Expiration Times for more info.

Valores devueltos

Esta función retorna true en caso de éxito o false si ocurre un error. Use Memcached::getResultCode() if necessary.

Ver también

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top