npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-delay-queue

v1.0.6

Published

node delay queue based on redis

Downloads

3

Readme

node-delay-queue

基于 Redis 实现的延迟队列,基本逻辑参考有赞延迟队列设计实现,代码和接口实现参考 delay-queue

任务重试规则参考微信支付主动回调:

通知频率为15s/15s/30s/3m/10m/20m/30m/30m/30m/60m/3h/3h/3h/6h/6h - 总计 24h4m

实现原理

任务元信息和私有数据放入 hash 中。任务执行时间和任务 id 放入 zset,主循环不断监测时间到达的任务,然后rpush 至 list 中供消费者消费,消费时通过 blpop 消费,消费完成需主动调用 finish 方法,否则会不断重试,重试规则见上面。

本项目一个优化点是:监测任务时间到达的计时器,不是采用定时监测。而是在每次循环开始先计算最近到达任务的时间间隔,然后根据此间隔设置定时器。

项目引入

npm i node-delay-queue

项目启动

先启动延时队列服务端,可参考 src/examples/2-server.ts。然后客户端通过 http api 的方式与服务端交互。客户端可参考 src/examples/2-client.ts 实现。

HTTP 接口

  • 请求方法均为 POST
  • 请求和返回数据结构均为 json

可用接口,可参考文件 src/server.ts

  • /push
  • /pop
  • /bpop
  • /remove
  • /finish

客户端调用可参考文件 src/client.ts

数据结构定义

interface Job {
  topic: string; // 主题
  id: string; // id
  execAt: number; // 执行时间戳,毫秒
  retry: number; // 当前重试次数,初始化时为 -1
  data?: any; // 任务私有数据
}

topic 和 id 合起来唯一即可。