2017-10-18

Redis:

redis 是完全开源免费的,遵守BSD协议,是一个高性能的key-value数据库。

安装:mac:brew install redis

启动:redis-server或者 brew services start redis

客户端命令:

  启动客户端:redis-cli

  在客户端查看服务器是否启动使用ping命令:$ping

2017-10-24

redis 集合

无序集合:Set是string类型的无序集合。集合成员是唯一的,这就意味着集合中不能出现重复的数据

SADD key member1 [member2] :向集合添加一个或多个成员

SCARD key member:获取集合的成员数

SMEMBERS key member:返回集合中的所有成员

SREM key member1 [member2]:移除集合中的一个或多个成员

有序集合:tring类型元素的集合,且不允许重复的成员。每个元素都会关联一个double类型的分数

ZADD key score1member1 [score2 member2]:向有序集合中添加一个或多个成员(或更新已存在成员的分数)

ZCARD key:获取有序集合成员数

ZRANGE key start stop [WITHSCORES]:通过索引区间返回有序集合指定区间内的成员

ZREM key member [member...]:移除有序集合中的一个或多个成员

results matching ""

    No results matching ""