Don't use the binary memcache protocol

The binary protocol appears to offer no perforance advantage and
doesn't support pipelining of requests.
This commit is contained in:
Tom Hughes 2012-02-23 21:42:33 +00:00
parent 7c3a4b497e
commit 92f667f488

View file

@ -6,7 +6,7 @@ class MemCache < Memcached::Rails
@@connections = []
def initialize(options = {})
options.reverse_merge! :binary_protocol => true, :namespace_separator => ":"
options.reverse_merge! :namespace_separator => ":"
super(MEMCACHE_SERVERS, options)