- Is is always advantages to use
memcache to improve performance of
MySQL query ? - Are there any downsides of extensive use of Memcache ?
Is is always advantages to use memcache to improve performance of MySQL query ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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?