博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java-redis列表数据操作示例(二)
阅读量:5310 次
发布时间:2019-06-14

本文共 1643 字,大约阅读时间需要 5 分钟。

 接上篇博文《》,redis连接管理类的代码请跳转查看。

一、列表类型缓存测试类

public class ListTest {    /**     * 主测试方案     */    @Test    public void test() {        RedisUtil.instance.run(conn -> oper(conn));        Assert.assertTrue(true);    }    /**     * 测试用的key     */    private final String _key = "simm-list";    /**     * 字符串操作     *      * @param conn     */    private void oper(ShardedJedis conn) {        System.out.println(MessageFormat.format("key[{0}]存在:{1} ", _key,conn.exists(_key)));        //列表数据初始化        String[] arr= "A,B,C,D,E,F,G".split(",");        conn.lpush(_key, arr);        conn.rpush(_key, arr);        print(conn);        //-- 列表元素删除方法 ------        //1.直接移除        conn.lrem(_key, 1, "G");//从左边数,要删除的元素个数,1:删除从左边找到的第一个数据。        print(conn);        //2.出栈        String val = conn.lpop(_key);        System.out.println(MessageFormat.format("lpop:{0} ", val));        print(conn);        //3.排除        conn.ltrim(_key, 1, 2);//trim方法在这里相当于过滤,符合条件的留下,其他的元素都删除        print(conn);        //-- 列表元素的修改 -----        conn.lset(_key, 0, "first");        print(conn);        //conn.del(_key); //删除key值        conn.expire(_key, 1); //设置改key值1s后过期,过期后redis自动清理该缓存        System.out.println(MessageFormat.format("key[{0}]存在:{1} ", _key,conn.exists(_key)));    }    private void print(ShardedJedis conn){        System.out.print(MessageFormat.format("{0}元素输出,长度[{1}]:", _key,conn.llen(_key)));        List
list = conn.lrange(_key, 0, -1); for (String str : list) { System.out.print(MessageFormat.format("{0} ", str)); } System.out.println(); }}

二、结果输出

  

 

转载于:https://www.cnblogs.com/MrSi/p/8478701.html

你可能感兴趣的文章
论三星输入法的好坏
查看>>
Linux 终端连接工具 XShell v6.0.01 企业便携版
查看>>
JS写一个简单日历
查看>>
LCA的两种求法
查看>>
Python 发 邮件
查看>>
mysql忘记密码的解决办法
查看>>
全面分析Java的垃圾回收机制2
查看>>
[Code Festival 2017 qual A] C: Palindromic Matrix
查看>>
修改博客园css样式
查看>>
Python3 高阶函数
查看>>
初始面向对象
查看>>
docker一键安装
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
Unity 5.4 测试版本新特性---因吹丝停
查看>>
7.5 文件操作
查看>>
DFS-hdu-2821-Pusher
查看>>
MyEclipse中将普通Java项目convert(转化)为Maven项目
查看>>
node js 安装.node-gyp/8.9.4 权限 无法访问
查看>>
windows基本命令
查看>>
VMware中CentOS设置静态IP
查看>>