HGETALL key
Time complexity: O(N) where N is the size of the hash.
Array reply: list of fields and their values stored in the hash, or an empty list when key
does not exist.
*Examples
redis> HSET myhash field2 "World"
Time complexity: O(N) where N is the size of the hash.
Array reply: list of fields and their values stored in the hash, or an empty list when key
does not exist.
redis> HSET myhash field2 "World"
本文档使用 全库网 构建