Tagged Questions
4
votes
0answers
228 views
Using persistent from within a Conduit
First up, a simplified version of the task I want to accomplish: I have several large files (amounting to 30GB) that I want to prune for duplicate entries. To this end, I establish a database of ...
0
votes
1answer
107 views
Converting Haskell's WAI Request to Network.HTTP.Conduit Request
I'm writing a server and I need to forward along a certain Request message. This message is basically either a POST (or GET) message, possibly containing a file of a few megabytes. This message is ...
1
vote
2answers
211 views
Lift a function to a Conduit Sink
I am apparently too stupid to properly understand and use Conduit.
I have a function f :: ByteString -> String, and need a Sink ByteString (ResourceT IO).
How do I get this?
Unfortunately, the ...
1
vote
1answer
160 views
Warp web service with a long lived resource (a file handle)
I'm trying to understand how to write a web service using warp that has a long lived resource that I want access to from all my requests (i.e. I want the resource to exist for the life time of server, ...
3
votes
1answer
210 views
Migrating from Network.HTTP.Enumerator to Network.HTTP.Conduit
I don't know why my code breaks. At first I thought it was because parseURL gives [] for the requestHeaders. Okay, so maybe I just need to tell it what the resquestHeaders should be. Well, I examined ...