Okay, so I'm sure plenty of you have built crazy database intensive pages...
I am building a page that I'd like to pull all sorts of unrelated database information from. Here are some sample different queries for this one page:
- article content and info
- IF the author is a registered user, their info
- UPDATE the article's view counter
- retrieve comments on the article
- retrieve information for the authors of the comments
- if the reader of the article is signed in, query for info on them
- etc...
I know these are basically going to be pretty lightning quick, and that I could combine some; but I wanted to make sure that this isn't abnormal?
How many fairly normal and un-heavy queries would you limit yourself to on a page?