redis 延時(shí)隊(duì)列

閑來無事是己,用redis做了一個(gè)延時(shí)隊(duì)列献联,僅供學(xué)習(xí)與參考劝篷。歡迎拍磚巴粪!


image.png

@Slf4j
@Service
public class RedisDelayQueue {

    @Resource
    private StringRedisTemplate stringRedisTemplate;

    private ScheduledExecutorService timer = Executors.newScheduledThreadPool(16);

    private List<String> consumeTopics = new ArrayList<>(64);


    @PostConstruct
    public void init() {
        Set<String> topicList = stringRedisTemplate.opsForSet().members("topicList");
        if (topicList != null) {
            topicList.forEach(this::registTopic);
        }

    }

    private void registTopic(String topic) {
        log.info("注冊監(jiān)聽topic消息:{}", topic);
        timer.scheduleAtFixedRate(() -> {
            Set<String> msgs = stringRedisTemplate.opsForZSet().rangeByScore(topic, 0, System.currentTimeMillis(), 0, 1000);
            if (msgs != null && msgs.size() > 0) {
                Long remove = stringRedisTemplate.opsForZSet().remove(topic, msgs.toArray());
                //刪除結(jié)果大于0代表 搶到了
                if( remove != null && remove> 0 ){
                    stringRedisTemplate.opsForList().leftPushAll(topic + "queue", msgs);
                }

            }
        }, 1, 1, TimeUnit.SECONDS);
    }


    public void produce(String topic, String msg, Date date) {
        log.info("topic:{} 生產(chǎn)消息:{},于{}消費(fèi)", topic, msg, date);
        Long addSuccess = stringRedisTemplate.opsForSet().add("topicList", topic);
        if (addSuccess != null && addSuccess > 0) {
            registTopic(topic);
        }
        stringRedisTemplate.opsForZSet().add(topic, msg, date.getTime());
    }


    public synchronized void consumer(String topic, Function<String, Boolean> consumer) {
        if (consumeTopics.contains(topic)) {
            throw new RuntimeException("請勿重復(fù)監(jiān)聽消費(fèi)" + topic);
        }
        consumeTopics.add(topic);
        int consumerPoolSize = 10;
        ExecutorService consumerPool = Executors.newFixedThreadPool(consumerPoolSize);
        for (int i = 0; i < consumerPoolSize; i++) {
            consumerPool.submit(() -> {
                do {
                    log.info("循環(huán)取消息:{}", topic);
                    String msg;
                    try {
                        msg = stringRedisTemplate.opsForList().rightPop(topic + "queue", 1000, TimeUnit.MINUTES);
                    } catch (QueryTimeoutException e) {
                        log.debug("監(jiān)聽超時(shí)通今,重試中!");
                        continue;
                    }
                    log.info("{}監(jiān)聽到消息:{}", topic, msg);
                    if (msg != null) {
                        Boolean consumerSuccess;
                        try {
                            consumerSuccess = consumer.apply(msg);
                        } catch (Exception e) {
                            log.warn("消費(fèi)失敻馗辫塌!", e);
                            consumerSuccess = false;
                        }
                        //消費(fèi)失敗,1分鐘后再重試
                        if (consumerSuccess == null || !consumerSuccess) {
                            log.info("消費(fèi)失敗派哲,重新放回隊(duì)列臼氨。msg:{},topic:{}", msg, topic);
                            produce(topic, msg, new Date(System.currentTimeMillis() + 60000));
                        }
                    }
                } while (true);
            });
        }

    }


}

單元測試

@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest
public class RedisDelayQueueTest {

    @Resource
    private RedisDelayQueue redisDelayQueue;

    @Test
    public void produce() {
        for (int i = 0; i < 30; i++) {
            redisDelayQueue.produce("topic"+i%3 , "hello message"+i , new Date(System.currentTimeMillis()+i*1000));
        }
    }

    @Test
    public void consumer() throws InterruptedException {

        redisDelayQueue.consumer("topic0", (msg)->{
            log.info("topic【{}】收到消息:{}","topic0",msg);
            return true;
        }); redisDelayQueue.consumer("topic1", (msg)->{
            log.info("topic【{}】收到消息:{}","topic1",msg);
            return true;
        });
        redisDelayQueue.consumer("topic2", (msg) -> {
            log.info("topic【{}】收到消息:{}", "topic2", msg);
            return true;
        });


        TimeUnit.MINUTES.sleep(10);
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市芭届,隨后出現(xiàn)的幾起案子储矩,更是在濱河造成了極大的恐慌,老刑警劉巖褂乍,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件持隧,死亡現(xiàn)場離奇詭異,居然都是意外死亡逃片,警方通過查閱死者的電腦和手機(jī)屡拨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來褥实,“玉大人呀狼,你說我怎么就攤上這事⌒远В” “怎么了赠潦?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵叫胖,是天一觀的道長草冈。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么怎棱? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任哩俭,我火速辦了婚禮,結(jié)果婚禮上拳恋,老公的妹妹穿的比我還像新娘凡资。我一直安慰自己,他們只是感情好谬运,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布隙赁。 她就那樣靜靜地躺著,像睡著了一般梆暖。 火紅的嫁衣襯著肌膚如雪伞访。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天轰驳,我揣著相機(jī)與錄音厚掷,去河邊找鬼。 笑死级解,一個(gè)胖子當(dāng)著我的面吹牛冒黑,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播勤哗,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼抡爹,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了芒划?” 一聲冷哼從身側(cè)響起豁延,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎腊状,沒想到半個(gè)月后诱咏,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡缴挖,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年袋狞,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片映屋。...
    茶點(diǎn)故事閱讀 38,626評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡苟鸯,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出棚点,到底是詐尸還是另有隱情早处,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布瘫析,位于F島的核電站砌梆,受9級特大地震影響默责,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜咸包,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一桃序、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧烂瘫,春花似錦媒熊、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至葛账,卻和暖如春怜校,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背注竿。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工茄茁, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人巩割。 一個(gè)月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓裙顽,卻偏偏與公主長得像,于是被迫代替她去往敵國和親宣谈。 傳聞我的和親對象是個(gè)殘疾皇子愈犹,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評論 2 348