https://github.com/raphexion/httpoisons
Minimal helper library to do many httpoison get in parallel
https://github.com/raphexion/httpoisons
Last synced: 2 months ago
JSON representation
Minimal helper library to do many httpoison get in parallel
- Host: GitHub
- URL: https://github.com/raphexion/httpoisons
- Owner: Raphexion
- Created: 2019-04-26T18:40:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T15:09:30.000Z (about 6 years ago)
- Last Synced: 2025-04-01T20:47:19.047Z (2 months ago)
- Language: Elixir
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Httpoisons
```
alias Httpoisons.Example.ServerServer.start_link
url = "https://jsonplaceholder.typicode.com/todos/1"
for _ <- 1..100, do: spawn(fn -> Server.get url end)
```