Can I use the Goroutines in the Google App Engine?
The following example seems to work, but can I use it? My goal is to make background processing very easy (while the actual task task is too heavy), and I want to immediately return the result to the client.
func MyHandler(w http.ResponseWriter, r *http.Request) { go func() {
source share