I’ve a site which is running in a shared host without memcached.
So, how about make a MySQL memory DB as object cache just like memcached?
I’ve a site which is running in a shared host without memcached. So, how
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.
I would say that if you operate a website that would need memcached, you shouldn’t be running it on a shared host.
That’s my flippant answer. Here’s a real answer:
Memcached has some good advantages over the MEMORY storage engine.
As a caching solution, I wouldn’t choose the MySQL MEMORY storage engine. Since you’re using PHP, you should be using APC or Xcache or something. These have data cache features that are better for typical usage in PHP.
If you’re not using one of these PHP caching technologies, that’s a more important area to improve than worrying about memcached versus MEMORY storage engine.