Hi,

I have an interesting problem where I need to make a rapid series of HTTP
requests to the same host, each with a nonce which increments with each
request and a signature of the request body including that nonce, but I
don't want to wait for the response before sending the next request. The
nonces must be received by the host in ascending order.

I've tried this using standard library HTTP requests, each running in
separate goroutines with a time delay before releasing the next nonce, to
try and ensure that the requests are sent in order, but this fails
intermittently, possibly due to network delays. I've also looked at
PipelineClient with MaxConns set to 1, which seems closer to what I need,
but it would still require an asynchronous response to prevent blocking
between request dispatches.

https://godoc.org/github.com/valyala/fasthttp#PipelineClient

Has anyone battled a problem similar to this before? Any ideas much
appreciated!

Cheers,
Donovan.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to