conduit-concurrent-map alternatives and similar packages
Based on the "Conduit" category.
Alternatively, view conduit-concurrent-map alternatives based on common mentions on social networks and blogs.
-
twitter-conduit
Twitter API package for Haskell, including enumerator interfaces and Streaming API supports.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of conduit-concurrent-map or a related project?
README
conduit-concurrent-map
Provides a Conduit
that maps a function concurrently over incoming elements, maintaining input order.
Note that this is not about running different parts of a conduit pipeline concurrently (see stm-conduit
for something that does that).
Instead, it it provides one pipeline element that processes elements concurrently internally.
Comparison to other libraries
conduit-algorithms
Data.Conduit.Algorithms.Async
'sasyncMapC
is similar but only does pure maps (a -> b
) instead of monadic maps (a -> m b
)Data.Conduit.Algorithms.Async
'sasyncMapC
is not async exception safe
stm-conduit
- Completely different goal: Connects multiple conduit components so that they run concurrently.