I have a hack in mind for my board which will allow threads posted in one forum to appear in forumdisplay in another. I already have it working on a single low traffic forum; I'd like to be able to expand it to the rest of the boards however, I'm worried that, as a feature which is used realtively infrequently it will put too much extra load on the server.
i.e. The standard SQL query for getting the list of threads is of the style
Quote:
SELECT somestuff FROM thread WHERE forumid=$forumid
|
But my modified SQL would look like
Quote:
SELECT somestuff FROM thread WHERE forumid=$forumid OR crosspostedto=$forumid
|
Thus the select statement is searching for two things in the database rather than one. Would this include a lot of extra load, or is the database good enough for it not to be bothered by such matters. Is there any way I can improve the efficiency?
Thanks