I want to handle the web hook request that has 1 million request. What is the best practice in rust with actix web or rust
I created the web hook API and while performing its load testing with 50000 (Max is 100000) users it throws the error. API will create a csv file and put it into AWS S3. But while getting these much request it throws the error. I used tokio task spawn. If any other best practice exist please feel free to share
This is a very broad question. I'd recommend building the web hook and coming back here asking more concrete and implementation specific questions once you've hit any latency issues.
Hi @jofas, I created the web hook API and while performing its load testing with 50000 (Max is 100000) users it throws the error. API will create a csv file and put it into AWS S3. But while getting these much request it throws the error. I used tokio task spawn. If any other best practice exist please feel free to share.