It isn't clear if you're talking about Python or Java.  If you're
talking about Python:
  
http://code.google.com/appengine/docs/python/python27/newin27.html#Multithreading

For Java, this is probably in relation to:
  
http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests


Robert






On Sat, Feb 18, 2012 at 06:10, Ajax <ja...@wetheinter.net> wrote:
> I was digging around the appengine source, and I came across
> ThreadManager, which is a utility to allow users to create their own
> threads during the lifetime of a request.  I am very interested in
> this feature, as it will enable the asynchronizing of my entire
> service layer for maximum possible performance.
>
> When I use the feature locally, it works fine, but in production, it
> throws FeatureNotAvailable exception, which was expected.  Is there a
> form where we can sign up for trusted tester on this feature?  Should
> I simply ask my project manager to email our appengine support
> contact?
>
> I want to redesign our GData libs to support Future<Feed> and
> Future<Entry>, using asynchronous requests.  As I am unable to
> replicate the OAuth signing with UrlFetchAsync, I was hoping
> ThreadManager would allow me to simply wrap the existing GData libs
> with Futures that run synchronously in a background thread, and simply
> block on calls to .get() until the feed or entry is returned.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to