jko170
2007-Nov-14 18:16 UTC
Do apps like basecamp, highrise, blinksale, etc. use caching?
I want to start using memcache for my app and I was wondering if you use memcache, do you even need to use action or fragment caching? Do the popular webapps only use memcache? Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Philip Hallstrom
2007-Nov-14 21:04 UTC
Re: Do apps like basecamp, highrise, blinksale, etc. use caching?
> I want to start using memcache for my app and I was wondering if you > use memcache, do you even need to use action or fragment caching? Do > the popular webapps only use memcache? Thanks.Why not use action/fragment caching that is backed by memcache? That''s what we do. In addition to caching other random things like SQL results... -philip --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
jko170
2007-Nov-15 17:42 UTC
Re: Do apps like basecamp, highrise, blinksale, etc. use caching?
Phil, Does that offer significant speed over using just memcache? Because if not, it is not worth it because expiring fragments is a pain in the ass. Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Philip Hallstrom
2007-Nov-15 20:34 UTC
Re: Do apps like basecamp, highrise, blinksale, etc. use caching?
> Does that offer significant speed over using just memcache? Because if > not, it is not worth it because expiring fragments is a pain in the > ass.Make it so that when you cache the fragment you can specify an expire time that gets passed to memcache so the fragment goes away on it''s own after a certain period of time. Depending on how much rendering still has to happen, yeah, it can help. Then again, you may not need it so spending time on it now might be overkill. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Yaxm Yaxm
2008-Jan-10 02:39 UTC
Re: Do apps like basecamp, highrise, blinksale, etc. use cac
Can I use memcache for page caching? I am using page caching for my RSS feed. I think once I run mongrels in a clustered of machines, I''d have problems with page caching because the page caching can''t be expired on all machines automatically. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---