There's a ton of things you can do. Using cacheable=True in your selects if 
you don't need update_record/delete_record can speed things up. Restricting 
the fields you get from your records to the ones you're actually using can 
also help. Paying attention to recursive queries as you may be doing a lot 
of them. Use redis for sessions to avoid session locks which can cause long 
delays if you have multiple ajax calls. Etc.  
  
There are really a ton of things you could be doing but, first, you need to 
know where the delay actually is, which means you need to measure stuff and 
see what's happening.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to