Is there any problems when it comes to using global variables in a code that runs on Google App Engine ?
Let's say that we have :
const ws = [];
function newUser(){
ws.push({name:"user"});
}
I know that if we run this code locally, the array will hold the data that has been added to it as long as the program is running and not terminated, is this the case when we run this code on Google App Engine, is the serverless architicture going to affect this somehow?