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), which are implemented via spin locks. Fun fact: nanomq doesn't even use atomics -- with SPSC ring buffers, you can get away with only a compiler fence for reads and a store fence for writes on x86! -- You received this message because you are subscribed to the Google Groups "ats-lang-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/ats-lang-users. To view this discussion on the web visit https://groups.google.com/d/msgid/ats-lang-users/de69e1e6-5e85-44de-b93d-5f9505f9171f%40googlegroups.com.
