当前位置: 首页 > 工具软件 > Redis Queue > 使用案例 >

【分布式】Redis分布式之Queue(队列)

燕鸿文
2023-12-01
说明

配置文件参考:https://blog.csdn.net/qq_38428623/article/details/123217001?utm_source=app&app_version=5.1.1&code=app_1562916241&uLinkId=usr1mkqgl919blen

使用
package com.demo.redis.list;

import org.redisson.api.RQueue;
import org.redisson.api.RQueue;
import org.redisson.api.RedissonClient;
import org.redisson.client.codec.StringCodec;
import org.springframework.stereotype.Component;
import org.springframework.util.Assert;

import javax.annotation.Resource;
import java.util.List;

/**
 * RedisQueue
 *
 * @author 王思勤
 */
@Component
public class RedisQueue {

    @Resource
    private RedissonClient redissonClient;

    /**
     * 获取 字符串 的 RSet
     *
     * @param name 名称
     * @return 返回 值
     */
    public RQueue<String> getQueue(String name) {
        RQueue<String> queue = redissonClient.getQueue(name, StringCodec.INSTANCE);
        Assert.notNull(queue, "queue is null");
        return queue;
    }

    /**
     * 新增 数据
     *
     * @param name  名称
     * @param value 值
     * @return 返回 是否成功
     */
    public boolean add(String name, String value) {
        return this.getQueue(name).add(value);
    }

    /**
     * 新增 数据
     *
     * @param name   名称
     * @param values 值
     * @return 返回 是否成功
     */
    public void addLast(String name, List<String> values) {
        this.getQueue(name).addAll(values);
    }

    /**
     * pop 数据
     *
     * @param name 名称
     * @return 返回 值
     */
    public String poll(String name) {
        return this.getQueue(name).poll();
    }

    /**
     * readAll 数据
     *
     * @param name  名称
     * @return 返回 值
     */
    public List<String> readAll(String name) {
        return this.getQueue(name).readAll();
    }
}
 类似资料: