# Functions
BatchDelete deletes a slice of keys from the cache, returning a map from failing cache keys to their specific errors.
BatchGet gets a slice of keys from the cache, returning a map from failing cache keys to their specific errors.
BatchSet sets a slice of keys to the cache, returning a map from failing cache keys to their specific errors.
BatchSetIfNotExists will set the key-value pairs ONLY if all keys don't already exist.
No description provided by the author
No description provided by the author
# Structs
BatchDeleteError contains a map associating failing cache keys with their specific errors.
No description provided by the author
BatchGetError contains a map associating failing cache keys with their specific errors.
No description provided by the author
BatchGetResponse contains a map associating successful get responses with their cache keys.
BatchSetError contains a map associating failing cache keys with their specific errors.
BatchSetIfNotExistsError contains a map associating failing cache keys with their specific errors.
BatchSetIfNotExistsNotStored indicates a successful set request where the value was already present.
No description provided by the author
BatchSetIfNotExistsStored indicates a successful set request where the value was stored.
No description provided by the author
No description provided by the author
BatchSetResponse contains a map associating successful set responses with their cache keys.
# Interfaces
BatchSetIfNotExistsResponse is the base response type for a BatchSetIfNotExists request.
# Type aliases
No description provided by the author