RESP3 responses may include attributes
Does this multi response contains a string key. Note that REDIS does not support strings as keys but by convention it encodes hashes in lists where index i is the key, and index i+1 is the value.
RESP3 Verbatim Bulk message include a 3 character format.
Get this multi response value at a numerical index.
Get this multi response value at a string key. Note that REDIS does not support strings as keys but by convention it encodes hashes in lists where index i is the key, and index i+1 is the value.
Get this multi response keys from a hash. Note that REDIS does not support strings as keys but by convention it encodes hashes in lists where index i is the key, and index i+1 is the value.
Get this size of this multi response.
Get this response as a BigInteger.
Get this response as a Boolean.
Get this response as Buffer.
Get this response as a Byte.
Get this response as a byte[].
Get this response as a Double.
Get this response as a Float.
Get this response as a Integer.
Get this response as a Long.
Get this response as a Number. In contrast to other numeric getters, this will not perform any conversion if the underlying type is not numeric.
Get this response as a Short.
Get this response as a String.
Get this response as a String encoded with the given charset.
The response return type.
Generated using TypeDoc
The response received from the REDIS server. Redis responses can have several representations:
Due to the dynamic nature the response object will try to cast the received response to the desired type. A special case should be noted that multi responses are also handled by the response object as it implements the iterable interface. So in this case constructs like for loops on the response will give you access to the underlying elements.