Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そこで、memcache を試してみました。私のUbuntuで「apt-get install python-memcache」を実行した後:
>>> import memcache >>> s = memcache.Client(["127.0.0.1:11211"]) >>> s.set("mykey", "myvalue") 0 >>> myvar = s.get("mykey") >>> print(myvar) None
何がうまくいかないのですか?
memcached サービスが実行されていません。サービスが起動したときの様子は次のとおりです。
>>> s = memcache.Client(["127.0.0.1:11211"]) >>> s.set("mykey", "myvalue") True >>> myvar = s.get("mykey") >>> print(myvar) myvalue
実行中かどうかを確認する方法は次のとおりです。
$ service memcached status * memcached is running