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:
parent
7c3a4b497e
commit
92f667f488
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue