Re: home page caching

2009-07-14 Thread Ramdas S
On Tue, Jul 14, 2009 at 11:47 PM, Michel Thadeu Sabchuk wrote: > > Hi Ramdas, > > > It would be great if you can throw some more light on your solution. > Sounds > > like a splendid idea and will be helpful for many including me > > This is easy, I loaded the page through

Re: home page caching

2009-07-14 Thread Michel Thadeu Sabchuk
Hi Ramdas, > It would be great if you can throw some more light on your solution. Sounds > like a splendid idea and will be helpful for many including me This is easy, I loaded the page through urllib and write it to a static file, then I served the file through nginx. Anyway, I will create a

Re: home page caching

2009-07-13 Thread Javier Guerra
On Mon, Jul 13, 2009 at 5:29 PM, Sam Tregar wrote: > I'm a beginner with Django, so I'm curious to hear about Django-specific > approaches. the Django-specific approaches start with the doc: http://docs.djangoproject.com/en/dev/topics/cache/#the-per-view-cache in short: 1:

Re: home page caching

2009-07-13 Thread Sam Tregar
On Mon, Jul 13, 2009 at 3:34 PM, Ramdas S wrote: > I have a web site where around 15 SQL semi complex queries run on the home > page. Traffic is increasing and the page loads are getting slower. What is > the best way to cache just the home page. I have already done standard >

Re: home page caching

2009-07-13 Thread Ramdas S
Micheal, It would be great if you can throw some more light on your solution. Sounds like a splendid idea and will be helpful for many including me Ramdas On Tue, Jul 14, 2009 at 1:42 AM, Michel Thadeu Sabchuk wrote: > > Hi Ramdas, > > > I have a web site where around 15

Re: home page caching

2009-07-13 Thread Javier Guerra
On Mon, Jul 13, 2009 at 3:12 PM, Michel Thadeu Sabchuk wrote: > I made a script to generate the homepage every x minutes and serve it > through nginx, I don't have too much RAM :) this is a really good solution. some benchmarks have shown NginX performance when serving static

Re: home page caching

2009-07-13 Thread Michel Thadeu Sabchuk
Hi Ramdas, > I have a web site where around 15 SQL semi complex queries run on the home > page. Traffic is increasing and the page loads are getting slower. What is > the best way to cache just the home page. I have already done standard > memcached on the server. I'm still learning about

home page caching

2009-07-13 Thread Ramdas S
I have a web site where around 15 SQL semi complex queries run on the home page. Traffic is increasing and the page loads are getting slower. What is the best way to cache just the home page. I have already done standard memcached on the server. Please suggest the best caching options, where we