i think i''ve read somewhere lots of sql queries would slow things down. how slow are we talking about? in terms of seconds i guess. i would also assume that the size of the db would come into account as well as the amount of users querying the db? does the speed come to a point where it''s really unbearable? -- 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 -~----------~----~----~----~------~----~------~--~---
On 7 Feb 2008, at 04:52, Richard Yoo wrote:> > i think i''ve read somewhere lots of sql queries would slow things > down. > how slow are we talking about? in terms of seconds i guess. i would > also assume that the size of the db would come into account as well as > the amount of users querying the db? >Depends how slow your queries are :-) This is really a ''how long is a piece of string'' type question. Just bear in mind that every database access has its cost (even say a select from a one row table - you''ve still got the latency of the round trip). Fred> does the speed come to a point where it''s really unbearable? > -- > 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 -~----------~----~----~----~------~----~------~--~---
On 7 Feb 2008, at 04:52, Richard Yoo wrote:> > i think i''ve read somewhere lots of sql queries would slow things > down. > how slow are we talking about? in terms of seconds i guess. i would > also assume that the size of the db would come into account as well as > the amount of users querying the db? >Depends how slow your queries are :-) This is really a ''how long is a piece of string'' type question. Just bear in mind that every database access has its cost (even say a select from a one row table - you''ve still got the latency of the round trip). Fred> does the speed come to a point where it''s really unbearable? > -- > 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 -~----------~----~----~----~------~----~------~--~---