Hi All,
I'm building a web app and recently ran into an issue. When a user visits my app for the fist time, I get some information from them via form and use it to create a file to upload to amazon s3. I realize now I need to make the upload to s3 a background process since it is multi-threading. However, will the latter part of my flow also be considered multi threading: When a repeat user accesses my app, their request contains an access token parameter which I need to use in real time to look up their file on s3 and pull the file data into memory/session since I need that info to complete their request. Is this considered multi-threading? Would like to know before I begin writing the code. Thank you for any help.