org.springframework.data.redis.core.RedisTemplate在List操作时的一个注意事项:
BoundListOperations boundListOperations = redisTemplate.boundListOps("key");

org.springframework.data.redis.core.BoundListOperations中
range api使用的是lrange命令,因此要使用lpush存放最新的元素,lpush存放老的数据。
截取API trim使用的ltrim命令,默认从左边截取。

LTRIM key start stop

Available since 1.0.0.

Time complexity: O(N) where N is the number of elements to be removed

Trim an existing list so that it will contain only the specified range of elements specified. Both ​​start​​​ and ​​stop​​​ are zero-based indexes, where ​​0​​​ is the first element of the list (the head), ​​1​​ the next element and so on.

For example: ​​LTRIM foobar 0 2 will modify the list stored at ​​foobar​​ so that only the first three

​start​​​ and ​​end​​ can also be negative numbers indicating offsets from the end of the list, where ​-1 is the last element of the list, ​​-2​​ the penultimate element and so on.

Out of range indexes will not produce an error: if ​​start​​​ is larger than the end of the list, or ​start > end​, the result will be an empty list (which causes ​​key​​ to be removed).
If ​​​end​​ is larger than the end of the list(will do nothing), Redis will treat it like the last element of the list.

A common use of ​​LTRIM​​ is together with ​​LPUSH​​​ / ​​RPUSH​​. For example:

LPUSH mylist someelement
LTRIM mylist 0 99

This pair of commands will push a new element on the list, while making sure that the list will not grow larger than 100 elements. This is very useful when using Redis to store logs for example. It is important to note that when used in this way ​​LTRIM​​ is an O(1) operation because in the average case just one element is removed from the tail of the list.

连接操作相关的命令

  • quit:关闭连接(connection)
  • auth:简单密码认证

持久化

  • save:将数据同步保存到磁盘
  • bgsave:将数据异步保存到磁盘
  • lastsave:返回上次成功将数据保存到磁盘的Unix时戳
  • shundown:将数据同步保存到磁盘,然后关闭服务

远程服务控制

  • info:提供服务器的信息和统计
  • monitor:实时转储收到的请求
  • slaveof:改变复制策略设置
  • config:在运行时配置Redis服务器

对value操作的命令

  • exists(key):确认一个key是否存在
  • del(key):删除一个key
  • type(key):返回值的类型
  • keys(pattern):返回满足给定pattern的所有key
  • randomkey:随机返回key空间的一个
  • keyrename(oldname, newname):重命名key
  • dbsize:返回当前数据库中key的数目
  • expire:设定一个key的活动时间(s)
  • ttl:获得一个key的活动时间
  • select(index):按索引查询
  • move(key, dbindex):移动当前数据库中的key到dbindex数据库
  • flushdb:删除当前选择数据库中的所有key
  • flushall:删除所有数据库中的所有key

对String操作的命令

  • set(key, value):给数据库中名称为key的string赋予值value
  • get(key):返回数据库中名称为key的string的value
  • getset(key, value):给名称为key的string赋予上一次的value
  • mget(key1, key2,…, key N):返回库中多个string的value
  • setnx(key, value):添加string,名称为key,值为value
  • setex(key, time, value):向库中添加string,设定过期时间time
  • mset(key N, value N):批量设置多个string的值
  • msetnx(key N, value N):如果所有名称为key i的string都不存在
  • incr(key):名称为key的string增1操作
  • incrby(key, integer):名称为key的string增加integer
  • decr(key):名称为key的string减1操作
  • decrby(key, integer):名称为key的string减少integer
  • append(key, value):名称为key的string的值附加value
  • substr(key, start, end):返回名称为key的string的value的子串

对List操作的命令

  • rpush(key, value):在名称为key的list尾添加一个值为value的元素
  • lpush(key, value):在名称为key的list头添加一个值为value的 元素
  • llen(key):返回名称为key的list的长度
  • lrange(key, start, end):返回名称为key的list中start至end之间的元素
  • ltrim(key, start, end):截取名称为key的list
  • lindex(key, index):返回名称为key的list中index位置的元素
  • lset(key, index, value):给名称为key的list中index位置的元素赋值
  • lrem(key, count, value):删除count个key的list中值为value的元素
  • lpop(key):返回并删除名称为key的list中的首元素
  • rpop(key):返回并删除名称为key的list中的尾元素
  • blpop(key1, key2,… key N, timeout):lpop命令的block版本。
  • brpop(key1, key2,… key N, timeout):rpop的block版本。
  • rpoplpush(srckey, dstkey):返回并删除名称为srckey的list的尾元素,并将该元素添加到名称为dstkey的list的头部

对Set操作的命令

  • sadd(key, member):向名称为key的set中添加元素member
  • srem(key, member) :删除名称为key的set中的元素member
  • spop(key) :随机返回并删除名称为key的set中一个元素
  • smove(srckey, dstkey, member) :移到集合元素
  • scard(key) :返回名称为key的set的基数
  • sismember(key, member) :member是否是名称为key的set的元素
  • sinter(key1, key2,…key N) :求交集
  • sinterstore(dstkey, (keys)) :求交集并将交集保存到dstkey的集合
  • sunion(key1, (keys)) :求并集
  • sunionstore(dstkey, (keys)) :求并集并将并集保存到dstkey的集合
  • sdiff(key1, (keys)) :求差集
  • sdiffstore(dstkey, (keys)) :求差集并将差集保存到dstkey的集合
  • smembers(key) :返回名称为key的set的所有元素
  • srandmember(key) :随机返回名称为key的set的一个元素

对Hash操作的命令

  • hset(key, field, value):向名称为key的hash中添加元素field
  • hget(key, field):返回名称为key的hash中field对应的value
  • hmget(key, (fields)):返回名称为key的hash中field i对应的value
  • hmset(key, (fields)):向名称为key的hash中添加元素field
  • hincrby(key, field, integer):将名称为key的hash中field的value增加integer
  • hexists(key, field):名称为key的hash中是否存在键为field的域
  • hdel(key, field):删除名称为key的hash中键为field的域
  • hlen(key):返回名称为key的hash中元素个数
  • hkeys(key):返回名称为key的hash中所有键
  • hvals(key):返回名称为key的hash中所有键对应的value
  • hgetall(key):返回名称为key的hash中所有的键(field)及其对应的value


使用Java操作Redis需要jedis-2.1.0.jar

如果需要使用Redis连接池的话,还需commons-pool-1.5.4.jar

packageimportimportimportimportimportimportimportpublic classprivatepublic void//连接redis服务器,192.168.0.100:6379
new Jedis("192.168.0.100", 6379);
//权限认证
);
/**
*/
public void//-----添加数据----------
//向key-->name中放入了value-->xinxin
//执行结果:xinxin
//拼接
));
//删除某个键
));
//设置多个键值对
);
//进行加1操作
));
/**
*/
public void//-----添加数据----------
new HashMap<String, String>();
);
);
);
,map);
//取出user中的name,执行结果:[minxr]-->注意结果是一个泛型的List
//第一个参数是存入redis中map对象的key,后面跟的是放入map中的对象的key,后面的key可以跟多个,是可变参数
);
//删除map中的某个键值
);
//因为删除了,所以返回的是null
//返回key为user的键中存放的值的个数2
//是否存在key为user的记录 返回true
//返回map对象中的所有key
//返回map对象中的所有value
).iterator();
while,key));
/**
*/
public void//开始前,先移除所有的内容
);
));
//先向key java framework中存放三条数据
);
);
);
//再取出所有数据jedis.lrange是按范围取出,
//));
);
);
);
);
));
/**
100 101 */
102 103 public void104 //添加
105 jedis.sadd("user","liuling");
106 jedis.sadd("user","xinxin");