mysqld with the right options. More memory gives more speed
if you have it. See section How does one change the size of MySQL buffers?.
SELECTs faster. See section How does MySQL use indexes?
NOT NULL on all columns.
See section How should I arrange my table to be as fast/small as possible?
--skip-locking disables file locking between SQL requests. This gives a greater speed
but has the following consequences:
mysqladmin refresh before
one tries to check/repair tables with isamchk. (isamchk -d
table_name is always allowed).
--skip-locking is on by default when compiling with MIT threads.
This is because flock() isn't fully supported by MIT threads on all
platforms.
Go to the first, previous, next, last section, table of contents.