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.
-
pool-conduit
Persistence interface for Haskell allowing multiple storage methods. -
http-conduit
An HTTP client engine, intended as a base layer for more user-friendly packages. -
twitter-conduit
Twitter API package for Haskell, including enumerator interfaces and Streaming API supports. -
conduit-combinators
Type classes for mapping, folding, and traversing monomorphic containers -
html-conduit
Various XML utility packages for Haskell -
csv-conduit
Flexible, fast and constant-space CSV library for Haskell using conduits -
hreq-conduit
A type dependent highlevel HTTP client library inspired by servant-client. -
simple-conduit
A simple streaming I/O library based on monadic folds -
binary-conduit
binary serialization interface for conduit -
conduit-audio
Use conduit to process/manipulate/convert audio -
stomp-conduit
Message-oriented Middleware for Haskell -
crypto-conduit
Conduit interface for cryptographic operations (from crypto-api). -
http-conduit-browser
Browser interface to the http-conduit package -
imagesize-conduit
Conduit sink to efficiently determine image dimensions -
fsnotify-conduit
Get filesystem notifications as a stream of events -
cryptonite-conduit
conduit bridge for cryptonite -
rss-conduit
Streaming parser/renderer for the RSS 2.0 standard. -
hw-conduit-merges
Additional merge / join combinators for Conduit -
udp-conduit
[DONE] Simple fire-and-forget style conduit parts (sources/sinks) for UDP traffic -
cryptohash-conduit
Simple conduit function for cryptohash -
jsonrpc-conduit
Library for building JSON-RPC 2.0 servers. -
ftp-conduit
FTP file commands using the conduit interface -
conduit-tokenize-attoparsec
Conduits for tokenizing streams. -
conduit-network-stream
A base layer for network protocols with Conduits -
conduit-zstd
Conduit interface to zstandard compression -
ascii85-conduit
Conduit for encoding ByteString into Ascii85 -
potoki-conduit
Integration of "potoki" and "conduit"
Clean code begins in your IDE with SonarLint
* 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.