我是靠谱客的博主 开朗钢铁侠,最近开发中收集的这篇文章主要介绍[redis] 获得 database, key, value,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

获得 database

The INFO KEYSPACE command can be used to check whether some keys are defined in several databases.

redis 127.0.0.1:6379[1]> info keyspace
# Keyspace
db0:keys=1,expires=0
db1:keys=1,expires=0

The SELECT command can be used to switch a session to another database.The SELECT command can be used to switch a session to another database.

redis 127.0.0.1:6379> select 1
OK
redis 127.0.0.1:6379[1]> keys *
1) "bar"

获取所有的 key

keys *

*是通配符

http://redis.io/commands/keys

获取 key 的 value

因为 redis 有多种数据类型,并且每种类型的取值方法不同,所有首先需要知道 key 存储的 value 类型

You will need to perform for each key a type and depending on the response perform:

  • for "string": get
  • for "hash": hgetall
  • for "list": lrange 0 -1
  • for "set": smembers
  • for "zset": zrange 0 -1 withscores

Keep in mind that for hashes and sorted sets you will be getting the keys/scores and values.

转载于:https://my.oschina.net/xieyunzi/blog/423199

最后

以上就是开朗钢铁侠为你收集整理的[redis] 获得 database, key, value的全部内容,希望文章能够帮你解决[redis] 获得 database, key, value所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部