We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984a639 commit 13b6cb3Copy full SHA for 13b6cb3
commands.go
@@ -969,6 +969,8 @@ func (c cmdable) HLen(key string) *IntCmd {
969
return cmd
970
}
971
972
+// HMGet returns the values for the specified fields in the hash stored at key.
973
+// It returns an interface{} to distinguish between empty string and nil value.
974
func (c cmdable) HMGet(key string, fields ...string) *SliceCmd {
975
args := make([]interface{}, 2+len(fields))
976
args[0] = "hmget"
0 commit comments