Ive been coding a site and anyway, its entirely database dependant, not a single bit of content is display in the HTML. EVRYTHING Through the Database. Links content, anything.. Anyway, there is like 30 queries on average for each page load. Do you think this is a stupid amount? Will there be performance problems?
depends what sort of queries they are, and how much data each selects, obviously a select * from table will take up more resources than select name1,name2 from table should you not need all the data. my website currently queries 22-26 times on a page load - not bothered.......
The less the better. Sometimes you can have one query that matches 5 of your queries, make sure you optimize your queries. Peace,
Well some of the queries I made were before I knew how to do joins, this was like 14 months ago. Im just concerned should I go back over. I can maybe cut the number by 5 queries, but it will probably take me 12 hours or so. Is it worth it.