App engine is optimized for apps with lots of requests, but not a lot of processing. You might want to consider other options if you have really high processing needs. Or consider a hybrid solution where you do your processing on something like amazon EC2 and server your requests via GAE.
On Dec 12, 3:50 am, Ronin <[email protected]> wrote: > hi, > > My Java App anticipates few requests, but a lot of processing. Hence > it was designed to be multi-threaded. Since the multiple threads are > not allowed in GAE & max request processing time is only 30 secs with > Task Queues, I'm looking at my options: > 1. How do you develop high background processing application with > GAE ? > 2. Is the 30 sec limit for Queue API forever or is it a temporary > feature ? > 3. Do you plan to support multi-threaded java apps in the future ? > > Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
