Hi, I use a lot of ajax requests to get data asynchronously but each requests are heavy to handle on server side.
Indeed, when web2py receive an ajax request, it process : - web2py python core files - ... - db.py - controller.py The result is that for each ajax requests one CPU is taken at 100%... whereas node.js take less than 5% Is there a solution in order to make ajax requests lighter to process ? Combining web2py and node.js ? Thanks