18 lines
508 B
Plaintext
18 lines
508 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
|
|
|
|
:desc
|
|
Retrieves a bunch of entries all at once.
|
|
|
|
:see
|
|
>memcache
|
|
|
|
:related
|
|
**PHP:** The `Memcache` or `Memcached` extension methods such as `get()`, `set()`, `delete()`, and `getMulti()`
|
|
**JavaScript / Node.js:** Node clients like `memjs`, `memcached`, or similar Memcached packages
|