2011年1月8日土曜日

python-memcachedで値を置き換える

python-memcachedで値を置き換えるには、以下のコードを実行します。

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

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

# keyでvalueを置き換え
mc.replace('key1', 'modified_value1')
# keyが存在しない場合はなにもしない
mc.replace('key2', 'value2')

# 値を表示
print('key1=' + mc.get('key1'))
print('key2=' + 'none' if mc.get('key2') is None else mc.get('key2'))

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

コメントを投稿