Hi!
Just like the title, how would a multiget from memcache look like?
Is this the correct way of utilizing multiget? :
$memcache_obj = new Memcache;
$memcache_obj->connect('memcache_host', 11211);
$var = $memcache_obj->get(Array('some_key', 'second_key'));
Thanks
UPDATE: anyone looking to do the same, check out this addition as well: http://www.craigiam.com/blog/19/memcached-multiget-using-php-pecl-memcache-class
Big thanks to Pascal_Martin for solving the issue!