chumak icon indicating copy to clipboard operation
chumak copied to clipboard

Pure Erlang implementation of ZeroMQ Message Transport Protocol.

Results 6 chumak issues
Sort by recently updated
recently updated
newest added

IO lists in erlang/elixir presents significant latency and memory use improvements. Are IO lists supported by Chumak as a sort of zero-copy or lazy binary serialization of payload? https://bignerdranch.com/blog/elixir-and-io-lists-part-1-building-output-efficiently/ https://bignerdranch.com/blog/elixir-and-io-lists-part-2-io-lists-in-phoenix/

Currently (July 27, 2021) there are these dialyzer errors. I'm sure some are not important, but I'm placing them here just as a reference. ``` src/chumak_command.erl Line 295 Column 1:...

help wanted

Re-implement all the zguide Erlang examples in Chumak: https://github.com/booksbyus/zguide/tree/master/examples This will serve to document the library and iron out any quirks in the library.

help wanted
docs

Here is the chumak’s process tree: ``` {your process goes here} | +--------> chumak_socket | | decode_and_send_to_parent(Frame, State). | | +----------> chumak_peer (holds the gen_tcp) ``` `chumak_peer` reads frames from...

In server mode `chumak_socket` should not exit when a peer shutdown except pair mode. I think this should be handled in implementation of each patterns, every implementation should decide exit...

help wanted
question

I think we need to set a specific version of Erlang as requirement, as I had some people run into issues when running old version of Erlang. I had the...

enhancement