QUOTE (Skits-O-phreniC @ Apr 29 2007, 12:13 PM)

but the MAIN use of the database is when you search. Just reading and posting doesnt use squat for the resources. I do have a forum, not really though, and I did ALOT of research when getting our site up.
Yes, But it still queries the database. for instance, when you click a link to a topic here, it has a topic number. All the entries for that topic are stored in a table in the database. When you click that link, the PHP intepreter takes the various variables in the URI (the topic ID for instance) and performs a "search" of sorts. the table should be indexed on topic, so it should be relatively low overhead. The query string would be something like
SELECT * FROM tablename WHERE topicid = '%t'
A search would be very similar to this, the only difference is it what its searching on is not indexed. Something like this
SELECT topicid FROM tablename WHERE title LIKE 'yourquerystring'
QUOTE (Skits-O-phreniC @ Apr 29 2007, 12:13 PM)

The fact remains that even with the traffic, four sites on one database(which is retarded, but saves money) the site should not have any problems. And if the server that the centrals are on isnt up to the task, then once again steve should be shopping for something else...
All the sites run on the same dedicated server, there would be only one instance of the SQL server, with multiple child threads to handle concurrent connections. Its most likely a simple matter of tuning the server a bit to allow for more efficient usage. I do not actually know the specs of the server, so I couldnt really say its underpowered.
QUOTE (Skits-O-phreniC @ Apr 29 2007, 12:13 PM)

I think you are thinking about it too much with the way databases work, with the forums it is minimal without searching or images on the central sites...
and the error jet and I are talking about isnt the same as the multiple search error. it a "the database has been shut down for a bit" not "you can only search once every 30sec"
I know exactly how they work, LOL. I currently work as a Database Engineer and System Administrator.
JetTech was talking about the flood control thing I believe.