文件名称:node-redis-as-queue:将 redis 视为消息队列的 node.js 包
文件大小:17KB
文件格式:ZIP
更新时间:2024-08-03 12:47:21
JavaScript
Redis 作为队列 - Node.js SDK 将 redis 视为消息队列的 node.js 包。 安装 $ npm install redis-as-queue 用法 有两种队列——普通队列和唯一队列。 唯一队列中的每个值都是唯一的。 如果新值等于队列中的任何值,您可以选择更新或不更新。 首先你应该需要这个包: var raq = require ( "redis-as-queue" ) ; 普通队列 创造 var normalQueue = new raq . NormalQueue ( QUEUE_NAME , [ ... ] ) ; 注意: [...]是连接 redis 服务器的选项。 参考。 例如。 new raq . NormalQueue ( QUEUE_NAME , 6379 , '127.0.0.1' , { } ) ; new raq . Nor
【文件预览】:
node-redis-as-queue-master
----.gitignore(601B)
----package.json(782B)
----LICENSE(18KB)
----index.js(358B)
----README.md(5KB)
----lib()
--------redis.js(578B)
--------queue()
----test()
--------unique.js(12KB)
--------normal.js(8KB)