Is it possible to access the GAE datastore without creating an appengine context from an HTTP request? I want to have access to the data store in separate threads that do not have access to the application engine context. Is it possible? or should I try to find a job? the language in which it works is Go btw ...
EDIT: Additional Information The reason I can’t use it passes all the appengine contexts to the level needed because I am creating a chat server with multiple threads. As soon as the initial port listening thread starts with one instance of the context, it maintains this context throughout the stream. However, after this thread starts, there may be many more connections to the server, all of which cannot go through the context, because the port listener is already running. The reason I need context has gone all the way because I need to be able to log messages in a client read handler. thanks in advance
Austin mueller
source share