PDA

View Full Version : Does each new thread create..


Fquist
Sat 13th May '00, 10:20pm
..a new mysql table, or is everything just stored in one big table?

Herb
Sat 13th May '00, 10:26pm
Posts get stored in one table called post and threads in one table called thread.. Then I believe an index table is created called threadindex for search purposes..

Fquist
Sun 14th May '00, 3:09am
Kinda suspected that..but doesn't mysql have a limit or so?

John
Sun 14th May '00, 6:07am
The only limit on MySQL is the server and disk space- and this should not be a problem. MySQL runs tables with millions of rows in, so unless you have a seriously large forum, you should have no problems.

John