jedis調用redis之List

來源:互聯網
上載者:User
package com.alex.xiyoubang;import java.util.List;import redis.clients.jedis.BinaryClient.LIST_POSITION;import redis.clients.jedis.Jedis;public class JedisList {    static Jedis jedis = new Jedis("192.168.1.171", 6379);    public static void main(String[] args) {        System.out.println("==List==");        // 清空資料        System.out.println(jedis.flushDB());        //添加資料        jedis.rpush("names", "唐僧");        jedis.rpush("names", "悟空");        jedis.rpush("names", "八戒");        jedis.rpush("names", "悟淨");        // 再取出所有資料jedis.lrange是按範圍取出,        // 第一個是key,第二個是起始位置,第三個是結束位置,jedis.llen擷取長度 -1表示取得所有        List<String> values = jedis.lrange("names", 0, -1);        System.out.println(values);        // 清空資料        System.out.println(jedis.flushDB());        // 添加資料        jedis.lpush("scores", "100");        jedis.lpush("scores", "99");        jedis.lpush("scores", "55");        // 數組長度        System.out.println(jedis.llen("scores"));        // 排序        System.out.println(jedis.sort("scores"));        // 字串        System.out.println(jedis.lrange("scores", 0, 3));        // 修改列表中單個值        jedis.lset("scores", 0, "66");        // 擷取列表指定下標的值        System.out.println(jedis.lindex("scores", 1));        // 刪除列表指定下標的值        System.out.println(jedis.lrem("scores", 1, "99"));        // 刪除區間以外的資料        System.out.println(jedis.ltrim("scores", 0, 1));        // 列表出棧        System.out.println(jedis.lpop("scores"));        // 整個列表值        System.out.println(jedis.lrange("scores", 0, -1));        //在100之前添加資料資料        jedis.linsert("scores", LIST_POSITION.BEFORE, "100", "22");        //在100之後添加資料資料        jedis.linsert("scores", LIST_POSITION.AFTER, "100", "77");        // 整個列表值        System.out.println(jedis.lrange("scores", 0, -1));        //把List中key為scores的第二條資料改為88        jedis.lset("scores", 1, "88");        // 整個列表值        System.out.println(jedis.lrange("scores", 0, -1));        //截取列表區間內的元素        jedis.ltrim("scores", 1, 2);        // 整個列表值        System.out.println(jedis.lrange("scores", 0, -1));        //將值 value 插入到列表 key 的表尾,若且唯若 key 存在並且是一個列表。當 key 不存在時, RPUSHX 命令什麼也不做。        jedis.rpushx("name", "Alex");        System.out.println(jedis.lrange("name", 0, -1));    }}

List命令詳細說明見:http://blog.csdn.net/qq_32347977/article/details/50510231

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.