public static void main(String[] args) {
        Jedis jedis = new Jedis("10.0.130.103",6379);
        jedis.lpush("task-queue", "123");//装入队列
        jedis.lpush("task-queue", "456");//装入队列

        //获取队列消息
        System.out.println(jedis.rpoplpush("task-queue", "tmp-queue"));
        //获取队列消息
        System.out.println(jedis.rpoplpush("task-queue", "tmp-queue"));
            // 将本次任务从暂存队列"tmp-queue"中清除
        jedis.rpop("tmp-queue");
        System.out.println("处理成功,被清除");
    }