task queues on server side
is there a way to implement task queues on server side ? such that the server respond to its request(GET/POST....etc) and run the task in a task queue in a way the prevents the server from going down in a serverless environment ?
as I found my self needing to make many things asynchronous in-order to prevent the request handler function from dying on me in a serverless environment
1 Reply
for vercel i found out that there is something called "waitUntil"