Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Response
BinaryObjectvalue

 

OP_CACHE_GET_ALL = 12

Retrieves multiple values from cache given multiple keys. 

...

Response
intresult count
(BinaryObject + BinaryObject) * countResulting key-value pairs. Keys that are not present in the cache are not included.

 

OP_CACHE_PUT = 4 

Puts a value with a given key to cache (overwriting existing value if any).

Request
int
Cache ID: Java-style hash code of the cache name
byteflags
BinaryObjectkey
BinaryObjectvalue

Empy response.


OP_CACHE_PUT_ALL = 20

Puts multiple key-value pairs to cache (overwriting existing associations if any).

...

Response
BinaryObjectExisting value for the specified key, or null

 

OP_CACHE_GET_AND_REPLACE = 14 

...