Hello Chris,
I suspect you're trying to build a stateful server, which is highly discouraged 
on GAE.
Scaling up and down to zero may kill instances any time, and you would lose 
your scoreboard, if it's in memory or in the local fs. And what about 2 
instances with contradictory scoreboards?
The solution (using GAE) is to make a stateless server and use a database like 
Datastore, Firestore, or Cloud SQL.
Cheers

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to