我似乎找不到有关Redis命令的有用信息。我想知道给定键值的数据类型。例如,要列出数据库的所有键,我运行以下命令:
keys *
在我的设置中,得到以下结果:
1) "username:testuser:uid" 2) "uid:1:first" 3) "uid:1:email" 4) "uid:1:hash" 5) "global:next_uid" 6) "members:email" 7) "uid:1:username" 8) "uid:1:last" 9) "uid:1:salt" 10) "uid:1:access" 11) "uid:1:company" 12) "email:testuser@gmail.com:uid" 13) "uid:1:phone_number"
我如何知道密钥members:email包含的数据类型?我尝试运行,get members:email但出现错误(error) ERR Operation against a key holding the wrong kind of value
members:email
get members:email
(error) ERR Operation against a key holding the wrong kind of value
有什么想法吗?
您可以使用type命令:http : //redis.io/commands/type