if not, i guess one must cache their page and turn common generated views into static files? -- 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 -~----------~----~----~----~------~----~------~--~---
Sure, why shouldn''t they? The search engine doesn''t see any difference between a static page and a Rails page. -- 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 -~----------~----~----~----~------~----~------~--~---
really? my guess was that since views dont get generated till an action is performed in the controller or model, what is there to crawl? lets say my controller returns a persons profile from a table... for example mydomain.com/doctor/name where name is == henry_gale a crawler cant get that right because no static page exist for henry gale? Andreas Schwarz wrote:> Sure, why shouldn''t they? The search engine doesn''t see any difference > between a static page and a Rails page.-- 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 -~----------~----~----~----~------~----~------~--~---
bbqTree wrote:> > really? my guess was that since views dont get generated till an action > is performed in the controller or model, what is there to crawl? lets > say my controller returns a persons profile from a table... > > for example mydomain.com/doctor/name > > where name is == henry_gale > > a crawler cant get that right because no static page exist for henry > gale? > > > > > Andreas Schwarz wrote: >> Sure, why shouldn''t they? The search engine doesn''t see any difference >> between a static page and a Rails page.crawler is not different from web browser. It does not work inside of your webserver so it does not see the difference between dynamic page and static page. What is the difference between domain.com/person/gale (which is static) domain.com/person/gale (which is database generated) Browser cannot see the difference and crawler also cannot. Gokhan www.sylow.net -- 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 -~----------~----~----~----~------~----~------~--~---