在文档中说你可以使用哈希来存储对象或任何类型的数据,然后你可以提取它们。例如,我想通过使用哈希来保存一些用户的 id,然后提取所有 id 或所有具有 id 的元素(有些东西,我没有完成类似的事情),你能帮我吗?
redis 127.0.0.1:6379> set user:id:1234 "content of my first user"
OK
redis 127.0.0.1:6379> set user:id:1235 "content of my second user"
OK
redis 127.0.0.1:6379> set user:id:1236 "content of my third user"
OK
redis 127.0.0.1:6379> get user:id
(nil) ####I hoped to see all my id's users listed, I want to make
something like that,in the documentation I saw an example, but
is not completed####