Dongmin Yu
Dongmin Yu
I hope someone to test same logic with C based libzmq. I guess this is not an issue of linger but handling TCP socket disconnect event handling. It might usually...
Do you have any special use case to bind on the SUB socket? It doesn't seems to be very common. PUB manages subscribers when SUB connects to it. From the...
That's generally right, but PUB binds and SUB connects to the PUB. Otherwise messages might not be delivered. As http://zguide.zeromq.org/page:all#Messaging-Patterns comments shortly, some socket types works only within a limitation....
Thanks for the reporting. It could be a known issue as `zmq.connect` is an asynchronous operation. `zmq.send` will return `false` with `EAGAIN` on the second client. That would be a...
Thanks for your interest on this project. I've fixed the unit test failure and submitted a diet configuration. The classpath.txt is a personal tweak to test zper without installing the...
Thank you for the comment and your interest on the project. I didn't consider the compressed messages at all. The pull request must be welcomed.
Thank for your the reporting. I wasn't able to reproduce issue on my vmware windows7 32bit instance. Could please attach a heap dump by `jcmd pid GC.heap_dump`
0.3.5 seems to be unstable in many ways. I'll look into the changes after 0.3.4. Thanks for the testing and reporting.
https://zguide.zeromq.org/docs/chapter1/#Why-We-Needed-ZeroMQ has some reasons. We might not always need a persistent queue in your project.