in reply to Re: Speed of MySQL DBs
in thread Speed of MySQL DBs

A simplistic explanation is:
Its doing web-type searches and storing the information it finds in mysql tables...

Replies are listed 'Best First'.
Re^3: Speed of MySQL DBs
by helphand (Pilgrim) on Feb 06, 2006 at 03:05 UTC

    Without more info, it's going to be hard for anyone to give you good advice. Assuming you are using isam tables, MySQL keeps each database in a separate directory and each table as a separate file in the database's directory. If you have thousands of tables, you may run into issues depending on the filesystem.

    Scott