No this is a "feature" which can be disabled. Web2py serializes all requests from the same user by locking sessions. You can do in your models:
if request.ajax: session._unlock(request) Massimo On Monday, 24 December 2012 10:31:57 UTC-6, [email protected] wrote: > > Hello, > My application performs Ajax calls to dynamically retrieve and display the > content of a log. If there is no change (no new lines) to the log compared > to the previous Ajax request, the contoller holds the request for up to 5 > secs (Ajax long polling). > The problem is that when the controller holds an Ajax request, other HTTP > requests like click on normal <a href...> links are blocked until the Ajax > call completes. > Is this due to a limit to the number of requests per client? > Best Regards, > Raphael > --

