2011年1月14日金曜日

python-memcachedでkeyを削除する

python-memcachedでkeyを削除するには、以下のコードを実行します。

# coding=UTF-8
import memcache
# memcachedに接続
mc = memcache.Client(['localhost:11211'], debug=0)

# key-valueを設定
mc.set('key1', 'value1')
print('key1=' + mc.get('key1'))

# keyを削除
mc.delete('key1')
print('key1=' + 'none' if mc.get('key1') is None else mc.get('key1'))


補足
ubuntuでmemcachedのインストールは以下のコマンドでおこないます。
sudo apt-get install memcached

python-memcacheのインストールは以下のコマンドでおこないます。
sudo apt-get install python-memcache

動作環境
python 2.6.6, python-memcache 1.45-1, ubuntu 10.10

関連情報
http://www.tummy.com/Community/software/python-memcached/

0 件のコメント:

コメントを投稿