I'm trying to use TouchByKey which is a memcached function but this warning pops up:
Memcached::touchByKey(): touch is only supported with binary protocol
I found that I could use something like:$mc->setOption(\Memcached::OPT_BINARY_PROTOCOL, true); on the client side.
The same problem happens with Touch()
My question is, do I need to change anything on the memcache server itself? Why is this even requiring Binary protocol? Why isn't this functionality available for the current ASCII protocol?