If you really need it live, like for a chat or auctions you can use https://zeromq.org/ over websockets. - Source: Reddit / about 1 month ago
Not sure if it ticks all your boxes, but we use zeromq and it def works on windows + UNIX. - Source: Reddit / 2 months ago
I would also look at something like ZeroMQ. ZeroMQ provides IPC patterns abstracted away in the form of network sockets. It’s basically a low level yet advanced network library but gives you a whole concurrency system. - Source: Reddit / 3 months ago
If you need complicated messaging over a distributed network of things, ZeroMQ might be interesting. They considered it for ROS 2 middleware:. - Source: Reddit / 4 months ago
I found that I knew almost nothing about C++ and had to start reading and watching tutorials to understand what was happening in the code samples provided. In the end, I just followed the C++ SDK programming manual and managed to capture the image data with the provided library and source code and display it with OpenCV. But even though this manual made it possible to display the video images, I am still very... - Source: Reddit / 4 months ago
0MQ is pretty awesome, and very high performance- https://zeromq.org. Check out The Guide- https://zguide.zeromq.org. - Source: Reddit / 6 months ago
I have used https://zeromq.org/ (push pull pattern) for a similar setup. the c# code creates a pull socket on top of tcp, which is basically an receiver mailbox. The python code connects to the pull socket and sends multipart messages. The c# code receives the multipart message and does stuff on it. Based on the example code found here https://zguide.zeromq.org/. I did not know gRpc then, so I do wonder if anyone... - Source: Reddit / 7 months ago
You could do it with boost::asio or you could use ZeroMQ (https://zeromq.org/). - Source: Reddit / 8 months ago
At one end of the spectrum: ZeroMQ[1]. No broker, just add the library to your microservices and expose a port. It gives you a socket interface with well-engineered queuing primitives. It's enough for most side projects in its simplest form, while also giving you the flexibility to implement a huge number of distributed queuing patterns. At the other end of the spectrum: just use a managed queue from your... - Source: Hacker News / 8 months ago
I have been reading the documents from Boost.fibre and Boost.Signals2 which I could use, maybe ASIO for async. I also checked ZeroMQ (this seems to be more or less "only" for networking), Copper and Rotor. If this were just a simple MCU project I would just take the FreeRTOS and would have everything I need. Now I'm just lost how to structure my code / how to realize my main loop. - Source: Reddit / 9 months ago
I learned a lot about sockets with the library ZeroMQ, although at that time I was using the Python version. This library also has a Rust library, although it doesn't look like the amazing guide about sockets allows you to select Rust as of yet. Still I would recommend going through this guide, as it is not just teaching you how to use a library, but also teaches you about sockets at a theoretical level. It's... - Source: Reddit / 11 months ago
I was planning on pushing data from a C++ application running on the embedded device into the flask application (also running on the embedded device) using ZeroMQ. - Source: Reddit / about 1 year ago
I use https://zeromq.org/ for similar stuff. - Source: Reddit / about 1 year ago
I just checked again, and to my understanding retrieving data from there I need to learn ZeroMQ? - Source: Reddit / about 1 year ago
I won't go to detail the usage of SQS because previous comments did it well. But I can point the ZeroMQ to internalize the queing inside your app. - Source: Reddit / about 1 year ago
Best thing about doing this through a CI/CD system is you could also use that same system to deploy API updates for batch job software. You can use something similar to the following: - https://zeromq.org/ - https://mosquitto.org/. - Source: Reddit / about 1 year ago
It is very common pattern to do this using something like https://zeromq.org/. - Source: Reddit / over 1 year ago
For communication between a Discord bot and other applications on the same machine I have used ZeroMQ - relatively easy to use, very portable but still flexible enough. (I've heard though that ZeroMQ has been somewhat superseded by nng nowadays). - Source: Reddit / over 1 year ago
VidGear provides an easy-to-use, highly extensible, Multi-Threaded + Asyncio Framework on top of many state-of-the-art specialized libraries like OpenCV, FFmpeg, ZeroMQ, picamera, starlette, streamlink, pafy, pyscreenshot, aiortc and python-mss at its backend, and enable us to flexibly exploit their internal parameters and methods, while silently delivering robust error-handling and real-time performance. - Source: Reddit / over 1 year ago
On the internet you will find several solutions to solve this challenge, but one of the most common is the use of a message broker. However, not all of us need a solution as advanced as the use of a message broker, it is in these specific cases (smaller applications) that I like to use ZeroMQ. - Source: dev.to / over 1 year ago
On a Linux desktop running a C++ QT GUI communicating with a SCADA system over ethernet using ZeroMQ. The gui was used to command and control the system. - Source: Reddit / over 1 year ago
Do you know an article comparing ZeroMQ to other products?
Suggest a link to a post with product alternatives.