Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

memcached示例

pip3 install pymemcache
#!python3
from pymemcache.client.base import Client

client = Client('localhost')

memKey = '/memcached'

client.set(memKey, '<HTML><H1>Hi, Memcached!</H1></HTML>')

result = client.get(memKey)

print(result)