MySQL or file system caching issue
4 answers
It very much depends on your disk I / O, the size of your database, your database configuration, your database link, database optimization, etc. etc. Therefore, there is no definitive answer to this question.
You might want to consider memcached for your caching problem. Since you have not provided any information about the actual problem, I doubt you will get answers to your problems. Or do you just want to know if disk-io is faster than mysql? ;-)
+2
source to share
If you only want to use the database to cache the mysql memory table , this might be a good alternative. This should give you the benefits of a sql database without using a hard drive. If you don't need sql database, in general memcached is a great solution.
0
source to share