cjoudrey / gluahttp

gluahttp: an http module for gopher-lua
MIT License
57 stars 23 forks source link

Add "http.request_batch" to perform concurrent requests #5

Closed cjoudrey closed 9 years ago

cjoudrey commented 9 years ago

Example usage:

http.request_batch({
  {"GET", "http://example.com", {query="page=1"}},
  {"POST", "http://example.com", {form="username=bob&password=secret"}},
})