luv icon indicating copy to clipboard operation
luv copied to clipboard

libuv bindings for Lua

Results 15 luv issues
Sort by recently updated
recently updated
newest added

hi, I wrote a pub/sub test, pub: local pub = zmq:socket(luv.zmq.PUB) pub:bind('tcp://127.0.0.1:12315') sub: local sub = zmq:socket(luv.zmq.SUB) sub:connect('tcp://127.0.0.1:12315') sub:setsockopt("SUBSCRIBE", '') pub:send(msg) can work, bug sub:recv() is blocked always, no data...

do we need luv.http? what would be its domain? interface exposed? what middleware strategy -- connect-style? *sgi style? let us discuss that here

Hello, in order to send a multi-part zmq messages, the ZMQ_SNDMORE flag should be set. I understand that in luv send() should be non-blocking, so ZMQ_DONTWAIT is mandatory, but it...

Hi! I've drafted a simple hello-world [HTTP server](https://github.com/dvv/luv-1/blob/master/examples/http_hellosvr.lua), to test luv under the load via `ab -n100000 -c500 ...` The result is that the server stopped responding after circa 50000...

Hi! Please, consider normalizing returned errors. Examples of inconsistency: https://github.com/richardhundt/luv/blob/master/src/luv_stream.c#L62 https://github.com/richardhundt/luv/blob/master/src/luv_stream.c#L114 https://github.com/richardhundt/luv/blob/master/src/luv_stream.c#L132 etc. IMHO it's the best to return stringified error code (`"ENOMEM", "EEXIST"` etc). The rationale is: to not...