2011年1月6日木曜日

python-memcachedで複数のkey-valueを設定・取得する

python-memcachedで複数のkey-valueを設定・取得するには、以下のコードを実行します。

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

# 複数のkey-valueを設定
mc.set_multi({'key1':'value1', 'key2':'value2'})

# 複数のkeyでvalueを取得
for key, value in mc.get_multi(['key1', 'key2']).iteritems():
 print key + "=" + value


補足
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 件のコメント:

コメントを投稿