Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php, memcached, binary protocol

I'm trying to squeeze each bit from an application I'm writing, I've already installed and configured igbinary for serialization on apc, sessions etc. I'd like to know if any of you have actual benchmarks with php and memcached using binary protocol. is it something valuable?

$memcache->setOption(Memcached::OPT_SERIALIZER, Memcached::SERIALIZER_IGBINARY);
$memcache->setOption(Memcached::OPT_BINARY_PROTOCOL,true);

thanks!

like image 916
sathia Avatar asked Dec 15 '11 11:12

sathia


1 Answers

maybe this will help you decide.

http://www.slideshare.net/tmaesaka/memcached-binary-protocol-in-a-nutshell-presentation

like image 196
Rufinus Avatar answered Sep 19 '22 10:09

Rufinus