davidja Posted December 11, 2005 Share Posted December 11, 2005 i get the felling that the more querys you do on a database the slower your site will run. with this in mind i would like to ask how many querys per minute can you do on just a standard server before your site starts to slow down. Quote Link to comment Share on other sites More sharing options...
fenway Posted December 24, 2005 Share Posted December 24, 2005 This is totally dependent on the nature of the queries that you run, as well as the actual hardware that's running the server. In general, MySQL scales quite well under heavy read load, as long as the actual SELECT statements you're executing aren't 5-table joins that return 1000s of records. I can't give you an exact number, but under you have 1000s of users on the site all the time, I wouldn't worry about it. Quote Link to comment Share on other sites More sharing options...
yeago Posted December 24, 2005 Share Posted December 24, 2005 Sure, not to mention piss off your system administrator. Don't go query crazy I guess. If you make your queries smart, you'll get everything you need and everything you don't need in one fell swoop. You ought to post some of your practices. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.