Re: Shared memory IPC in ATS

2018-04-08 Thread Andrew Knapp
Nanomq is as bare-bones as you can possibly get. Unlike zeromq, it only works for a small number of local processes, and makes every possible tradeoff for low latency. Nanomq (in the ATS port and original C++) only offers blocking reads in the public interface (I'll probably change this),

Re: Shared memory IPC in ATS

2018-04-08 Thread gmhwxi
Thanks! I once tried to use zeromq. For instance, the myserver2 example is the following directory is based on zeromq: http://ats-lang.sourceforge.net/EXAMPLE/EFFECTIVATS/http-server/ >>Fair warning: there aren't many scenarios where this design is a good idea Could you elaborate? Also, how