positiondev / offset

A haskell library that communicates with wordpress over its api.
BSD 3-Clause "New" or "Revised" License
3 stars 3 forks source link

Replace wreq with http-conduit #7

Open dbp opened 8 years ago

dbp commented 8 years ago

wreq has some performance problems, at least when last investigated, due to in creating a new request context every request (which takes is about 5MB of memory). We should be able to drop down to what wreq uses underneath, http-conduit, without too much trouble.

dbp commented 8 years ago

It looks like wreq now supports re-using managers, so we may just be able to use that.