Skip to content

Delay in sending data after every 100th request #212

Answered by mobizt
parthesh-hub asked this question in Q&A
Discussion options

You must be logged in to vote

All async functions are not anyc call but sending the request without waiting for response or ignore the response.

The client receive buffer may full or sever denied the further request can be occurred at some subsequence requests, then the current session will close and start new connection which required the time for SSL handshake to be done in almost second.

The purpose of async functions is for sending data rapidly in case of speed is important but not doing this all the time as it runs in loop without timing.

Use normal function instead of async function for your general use.

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@parthesh-hub
Comment options

@mobizt
Comment options

@mobizt
Comment options

@parthesh-hub
Comment options

Answer selected by parthesh-hub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants