hamiltop / streamz

Elixir Streams and Utilities for Streaming.
24 stars 4 forks source link

`Streamz.merge/1` and `Streamz.Task.stream/1` might be able to leverage GenEvent or GenServer #1

Closed hamiltop closed 10 years ago

hamiltop commented 10 years ago

In order to enable backpressure, we have to make synchronous calls in a number of places. Right now we are manually implementing these calls, but there might be a cleaner way to do it.

hamiltop commented 10 years ago

Genserver improved performance, but rewriting without an intermediate process was much more efficient.