If you expect to receive a high amount of requests...
# suitescript
m
If you expect to receive a high amount of requests on your Restlet script, what is the right way to handle it? Is there some kind of unlimited queue that we can use?
b
there is a limit to the number of requests that can be handled at the same time
be prepared to have error handling to handle times when you have too many concurrent requests
m
Thanks for the reference.
b
and consider using N/task to process the incoming data at a later time
m
Cool