I was reading the php documentation (See : Here), It says you can use Memcache::get() function for single or multiple request, Is it possible?
If yes, why we have getMulti method in Memcached?
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.
Memcache::get(array(...))is the Memcache method to get multiple results at once.Memcached::getMulti()is the Memcached method to get multiple results at once.Note: Memcache is a totally different library/extension than Memcached.