Reputation: 103397
Upvotes: 0
Views: 408
Reputation: 27384
If you have slow queries the first thing you should address is the query itself as well as your table setup.
Usually altering the query to take advantage of indexes as well as maintaining correct indexes on your tables will actually dramatically reduce the query time of your SQL. Keeping this down will also allow MySQL to cache queries itself taking the earnest off you.
What is your need to cache your queries external to MySQL itself?
Upvotes: 1