I don't get a higher number than 11 due the limitation of 1000 requests per 
minute.

http://code.google.com/intl/nl/appengine/forum/?place=forum/google-appengine

private static Set<String> threads = new HashSet<String>(18);
.
.
.
Thread thread = Thread.currentThread();

if(thread != null) {
    String name = ""+thread.getId() + ":" + thread.getName();

    synchronized(YourClassName.class) {
    threads.add(name);
    log.info("active requests :"+threads.size());
    }
}

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

Reply via email to