Is there any standard Haskell library that handles process processing?

I did a bit of work, but I'm still not sure if Haskell has a standard library dealing with interprocess communication materials, since I am new to Haskell, I also hope that the library is well-documented, it is better to use some small example (for example, to transmit some data types and use them) ....

+8
haskell
source share
2 answers

Many commercial open source IPCs have Haskell bindings:

0MQ

Thirft

Messagepack

I did a great job with Messagepack because it is quite light in weight.

+7
source share

I created a simple library to solve the most basic aspects of this problem: http://hackage.haskell.org/package/ipcvar

+1
source share

All Articles