[web2py] Scaling web2py

2012-09-01 Thread Webtechie
I would like to use web2py for a web application which has large databases (really large) , expects high volume of traffic . Are there any ways to make web2py apps run faster ? (like really faster ) , (looking for solutions apart from pooling more hardware and replacing Cpython wth pypy ,

[web2py] Scaling Web2py

2012-09-01 Thread Webtechie
I would like to use web2py for a web application which has large databases (really large) , expects high volume of traffic . Are there any ways to make web2py apps run faster ? (like really faster ) , (looking for solutions apart from pooling more hardware and replacing Cpython wth pypy ,

[web2py] Re: Scaling Web2py

2012-09-01 Thread Webtechie
. From what I can recall howesc has web2py handling a site servicing 2.5m requests per day. On Saturday, September 1, 2012 6:48:01 PM UTC+2, Webtechie wrote: I would like to use web2py for a web application which has large databases (really large) , expects high volume of traffic

[web2py] Re: Scaling Web2py

2012-09-01 Thread Webtechie
you please explain with a specific use case ? On Saturday, September 1, 2012 10:18:01 PM UTC+5:30, Webtechie wrote: I would like to use web2py for a web application which has large databases (really large) , expects high volume of traffic . Are there any ways to make web2py apps run faster

[web2py] Re: Scaling Web2py

2012-09-01 Thread Webtechie
say you don't need session, you call session.forget() in your app and all the related machinery in web2py will be disabled. This speeds up web2py, but if you need sessions you can't turn them off, can you ? ^_^ On Sunday, September 2, 2012 12:15:05 AM UTC+2, Webtechie wrote: 1. Apart from