Dictionary mapping keys to deltas (positive or negative integers)
to apply to each corresponding key.
key_prefix
Prefix for to prepend to all keys.
initial_value
Initial value to put in the cache, if it doesn't
already exist. The default value, None, will not create a cache
entry if it doesn't already exist.
namespace
A string specifying an optional namespace to use in
the request.
Returns
Dictionary mapping input keys to new integer values. The new value will
be None if an error occurs, the key does not already exist, or the value
was not an integer type. The values will wrap-around at unsigned 64-bit
integer-maximum and underflow will be floored at zero.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-11-14 UTC."],[[["The `offset_multi` function allows for batch incrementing or decrementing of multiple keys in the memcache."],["It accepts a dictionary (`mapping`) where keys are mapped to integer deltas for adjusting the cached values."],["A `key_prefix` can be provided to prepend to all keys, and `namespace` can be set for organization."],["The function can optionally set an `initial_value` if a key doesn't already exist in the cache, otherwise the default will not create a cache entry."],["The return value is a dictionary, mapping the input keys to their new values, or `None` if an error occurs or if the key doesn't exist/wasn't an integer."]]],[]]