Popularity
4.4
Declining
Activity
0.0
Declining
10
3
0

Monthly Downloads: 20
Programming language: Haskell
License: MIT License
Tags: Data     Conduit    
Latest version: v0.1.1

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.

Do you think we are missing an alternative of conduit-concurrent-map or a related project?

Add another 'Conduit' Package

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's asyncMapC is similar but only does pure maps (a -> b) instead of monadic maps (a -> m b)
    • Data.Conduit.Algorithms.Async's asyncMapC is not async exception safe
  • stm-conduit
    • Completely different goal: Connects multiple conduit components so that they run concurrently.