You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Redis treats its input as strings, and any conversions will be done server side in any case. Example: the INCRBY key 2 command will be send to Redis like this:
*3\r\n$6\r\nINCRBY\r\n$3\r\nkey\r\n$1\r\n2\r\n
There's no need to force the users to cast as []interface{} the arguments sent when using Client.Send.
The text was updated successfully, but these errors were encountered:
Redis treats its input as strings, and any conversions will be done server side in any case. Example: the
INCRBY key 2
command will be send to Redis like this:There's no need to force the users to cast as
[]interface{}
the arguments sent when usingClient.Send
.The text was updated successfully, but these errors were encountered: