I’m using go language and it seems good practice to communicate between different threads/routines by channels and locks instead of datastore. However, it appears that it’s not possible between two instances if there’s more than one instance running. Is there a way to make it not open a second one, even if there’s high traffic?
I’m using go language and it seems good practice to communicate between different threads/routines
Share
You should use Backends if you want fine to control the spawning and shutdown of instances.