All Projects → rainingmaster → lua-resty-nsq

rainingmaster / lua-resty-nsq

Licence: other
lua-resty-nsq - Lua nsq client driver for the ngx_lua based on the cosocket API

Programming Languages

lua
6591 projects
Makefile
30231 projects

Projects that are alternatives of or similar to lua-resty-nsq

openresty-project-v0.01
🌹 基于OpenResty编写一个MVC模式的WEB项目 V0.01
Stars: ✭ 40 (+122.22%)
Mutual labels:  openresty, lua-resty
lua-resty-http2
The HTTP/2 Protocol (Client Side) Implementation for OpenResty.
Stars: ✭ 73 (+305.56%)
Mutual labels:  openresty, lua-resty
lua-resty-busted
Test OpenResty scripts with busted
Stars: ✭ 29 (+61.11%)
Mutual labels:  openresty, lua-resty
openresty dev
Code for OpenResty Development Guide
Stars: ✭ 85 (+372.22%)
Mutual labels:  openresty, lua-resty
lua-resty-aries
openresty and lua multi-function template
Stars: ✭ 47 (+161.11%)
Mutual labels:  openresty
phi
an api-gateway based on openresty
Stars: ✭ 23 (+27.78%)
Mutual labels:  openresty
lightning
服务收集app web h5 埋点信息,openresty 接受,推送到kafka
Stars: ✭ 39 (+116.67%)
Mutual labels:  openresty
RillAdmin
vue + openresty/nodejs web admin
Stars: ✭ 34 (+88.89%)
Mutual labels:  openresty
docker
docker environment for PHP developers
Stars: ✭ 12 (-33.33%)
Mutual labels:  openresty
lua-resty-danmaku
Live danmaku server in OpenResty (WIP)
Stars: ✭ 12 (-33.33%)
Mutual labels:  openresty
favorite-nginx
Selected favorite nginx modules and resources
Stars: ✭ 63 (+250%)
Mutual labels:  lua-resty
lua-practice
使用lua结合redis,mysql,nginx等开发的实用性测试案例
Stars: ✭ 13 (-27.78%)
Mutual labels:  openresty
triton
Triton is a high-performance mq consumer, support kafka,rabbit-mq,rocketmq,nsq and other mq
Stars: ✭ 19 (+5.56%)
Mutual labels:  nsq
lua-resty-jump-consistent-hash
consistent hash for openresty
Stars: ✭ 24 (+33.33%)
Mutual labels:  openresty
cassandra-nginx-cdn
Some config files and POC code to use Apache Cassandra as distributed storage for HLS chunks accross multiple datacenters and scripts for converting/transcoding UDP MPEG-TS to HLS and vice versa. The idea is take from Globo.com’s Live Video Platform for FIFA World Cup ’14.
Stars: ✭ 24 (+33.33%)
Mutual labels:  openresty
redis cluster
a openresty nginx lua redis cluster
Stars: ✭ 26 (+44.44%)
Mutual labels:  openresty
lua-resty-acme
Automatic Let's Encrypt certificate serving and Lua implementation of ACMEv2 procotol
Stars: ✭ 95 (+427.78%)
Mutual labels:  openresty
litemall-dw
基于开源Litemall电商项目的大数据项目,包含前端埋点(openresty+lua)、后端埋点;数据仓库(五层)、实时计算和用户画像。大数据平台采用CDH6.3.2(已使用vagrant+ansible脚本化),同时也包含了Azkaban的workflow。
Stars: ✭ 36 (+100%)
Mutual labels:  openresty
nott
The New OTT Platform - an excuse to discuss and design a simple edge computing platform
Stars: ✭ 46 (+155.56%)
Mutual labels:  openresty
cdn-up-and-running
CDN Up and Running - an introduction about how modern CDNs works
Stars: ✭ 131 (+627.78%)
Mutual labels:  openresty

Name

lua-resty-nsq - Lua nsq client driver for the ngx_lua based on the cosocket API

Table of Contents

Status

Build Status

This library is developing.

Description

This Lua library is a NSQ client driver for the ngx_lua nginx module:

This Lua library takes advantage of ngx_lua's cosocket API, which ensures 100% nonblocking behavior.

Synopsis

    lua_package_path "/path/to/lua-resty-nsq/lib/?.lua;;";

    server {
        location /test {
            content_by_lua_block {
                local config = {
                    read_timeout = 3,
                    heartbeat = 1,
                }
                local producer = require "resty.nsq.producer"
                local consumer = require "resty.nsq.consumer"

                local cons = consumer:new()
                local prod = producer:new()

                local ok, err = cons:connect("127.0.0.1", 4150, config)
                if not ok then
                    ngx.say("failed to connect: ", err)
                    return
                end

                local ok, err = prod:connect("127.0.0.1", 4150)
                if not ok then
                    ngx.say("failed to connect: ", err)
                    return
                end

                ok, err = prod:pub("new_topic", "hellow world!")
                if not ok then
                    ngx.say("failed to pub: ", err)
                    return
                end

                ok, err = prod:close()
                if not ok then
                    ngx.say("failed to close: ", err)
                    return
                end

                ok, err = cons:sub("new_topic", "new_channel")
                if not ok then
                    ngx.say("failed to sub: ", err)
                    return
                end

                local function read(c)
                    c:rdy(10)
                    local ret = cons:message()
                    ngx.say("sub success: ", require("cjson").encode(ret))
                end

                local co = ngx.thread.spawn(read, cons) -- read message in new thread
                ngx.thread.wait(co)

                ok, err = cons:close()
                if not ok then
                    ngx.say("failed to close: ", err)
                    return
                end
            }
        }
    }

Back to TOC

Modules

Back to TOC

resty.nsq.producer

Back to TOC

Methods

Back to TOC

new

Back to TOC

pub

Back to TOC

resty.nsq.consumer

Back to TOC

Methods

Back to TOC

new

Back to TOC

Installation

export LUA_LIB_DIR=/path/to/lualib && make install

Back to TOC

TODO

Back to TOC

Copyright and License

This module is licensed under the BSD license.

Copyright (C) 2018-2018, by rainingmaster.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Back to TOC

See Also

Back to TOC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].