-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stream read query #39
Comments
Yes, lib doesn't support this. Is this supported via HTTP? |
Yes, when the server respond with headers elixir Finch lib support this (uses Mint under the hood), with HTTPoison supports async responses too but I don't recommend any use of HTTPoison because of hackney latest versions... |
You can simplify this package A LOT by just using Finch, which already provides pool of conns |
Right now we paused development of Pillar until September, in this way i advise you to make fork with branch #26 and add Finch HTTP Client |
With a stream if you need to query a lot of data to do processing on, you can do so without buffering everything first. I also need this and I think @sonic182 is right that Finch seems like a great option, as it does pooling out of the box and also supports streaming. |
The lib doesn't support read response as stream isn't it?
The text was updated successfully, but these errors were encountered: