Tag : backend

I have a multithreaded backend application. It is inputted x, and outputs y, and this makes up a “job”. A job can take up to several seconds to complete. The application is fed input via HTTP requests, and once the job is completed it will return a response to the HTTP (so the response time can be several seconds). The response data can vary in size from a couple of bytes to around half..

Read more