module Redis::Commands::Hash

Direct including types

Defined in:

commands/hash.cr

Instance Method Summary

Instance Method Detail

def hget(key : String, field : String) #

[View source]
def hgetall(key : String) #

[View source]
def hmget(key : String, *fields : String) #

[View source]
def hmset(key : String, data : ::Hash(String, String)) #

DEPRECATED The Redis HMSET command is deprecated. Use HSET instead. This method will be removed in v1.0.0 of this shard. See https://redis.io/commands/hmset/


[View source]
def hset(key : String, data : ::Hash(String, String)) #

[View source]
def hset(key : String, *fields : String) #

[View source]
def hset(key : String, **fields : String) #

[View source]