Forum Moderators: coopster
But in general it has been my experience (an someone feel free to enlighten me if this is off) that MySQL queries process very quickly. The times that I have had slow results were on import scripts with big data sets (4000 records). However, in that situation I was also writing to a file (which is what I think made the overall process slow).
So I would say, if you have a need to use that data sometime down the road, MySQL dbs are very useful and I would encourage you to use them.
Josh
My rule of thumb is to use a DB if I think it will make life easier. If there's a speed penalty, it's probably worth paying. If it's a low traffic site like mine are, who cares? The speed issue is only a problem when the server load gets high and things start slowing down. If it's a high-traffic site, presumably you have the financial resources to put some computing horsepower into it.
If it's a site with just a handful of relatively static pages and it is certain that it will stay that way, I just use the file system as I don't see any advantage to using a database. One site I have has about 6,000 constantly updating pages and they are almost always accessed via a local search. In that case, a DB is the only way to go.
Tom