21 lines
569 B
Plaintext
21 lines
569 B
Plaintext
:sig
|
|
StringMap memcache_get_multiple(u64 connection, StringList keys)
|
|
|
|
:params
|
|
connection : connection handle
|
|
keys : a list of strings containing the keys to be retrieved
|
|
return value : a StringMap with the retrieved entries
|
|
|
|
:see
|
|
>memcache
|
|
|
|
:content
|
|
Retrieves multiple entries in one call.
|
|
|
|
The result is returned as a `StringMap` keyed by the requested Memcache keys.
|
|
|
|
Related:
|
|
|
|
- PHP: `Memcache` or `Memcached` methods such as `get()`, `set()`, `delete()`, and `getMulti()`
|
|
- JavaScript / Node.js: clients such as `memjs`, `memcached`, or similar Memcached packages
|