Hi,
I enabled Tarantool Memcached binrary protocol support.
ps -eaf | grep taran
root 8776 7561 0 08:53 pts/1 00:00:00 tarantool_box: primary pri: 33013 sec: 33014 memc: 33016 adm: 33015
As you can see, 33016 will serve Memcached binary protocol
Here is the client:
import pylibmc
client = pylibmc.Client(["127.0.0.1:33016"], binary=True)
print 'Set: ', client.set('a', '1')
print 'Get: ', client.get('a')
However, no response can be received from Tarantool 1.5.1 after running the script. The script is unable to exit or complete.