文件名称:一个NodeJS和redis做的基于http协议的队列
文件大小:192KB
文件格式:ZIP
更新时间:2018-04-02 04:11:10
nodejs redis http
一个NodeJS和redis做的基于http协议使用的队列 做了点小修改 支持多个队列和post提交 原github地址:https: github com lnmp nodemq 使用方法: 在安装好redis和nodejs后 配置config js 执行: $ node index js 启动服务 入队: 1 默认队列 http: 127 0 0 1:8000 put data 入队内容 2 自定义队列 http: 127 0 0 1:8000 postPut post方式提交json串 {"postData”:”入队内容" "queueName":"队列名称”} 出队: 1 默认队列 http: 127 0 0 1:8000 get 2 自定义队列 http: 127 0 0 1:8000 get queueName 队列名称 获取队列内容: http: 127 0 0 1:8000 getList http: 127 0 0 1:8000 getList queueName 获取队列长度: http: 127 0 0 1:8000 getLen http: 127 0 0 1:8000 getList queueName">一个NodeJS和redis做的基于http协议使用的队列 做了点小修改 支持多个队列和post提交 原github地址:https: github com lnmp nodemq 使用方法: 在安装好redis和nodejs后 配置config js 执行: $ node index js 启动服务 入队: 1 默认队列 http: 12 [更多]
【文件预览】:
index.js
node_modules
----iconv-lite()
--------package.json(3KB)
--------.travis.yml(65B)
--------LICENSE(1KB)
--------encodings()
--------README.md(5KB)
--------Changelog.md(1KB)
--------lib()
--------.npmignore(44B)
config.js
lib
----requestHandle.js(4KB)
----redis-client.js(30KB)
----route.js(561B)
----server.js(352B)
README