Python 存取 Redis 範例
可參考 菜鳥教程
本範例為 python-redis之使用
$ pip install redis
當然,要不要用 pyenv 之類的環境管理隨你。
以下是簡單的連接與存取範例
$ python
>>> import redis >>> the_pool = redis.ConnectionPool(host="YOUR_REDIS_HOST",port=6379, db=0) >>> the_conn = redis.Redis(connection_pool=the_pool) >>> the_conn.keys("*") # 列出符合萬用字元 * 的 key(也就是全部) >>> the_conn.set("exmaple_key", "example_value") # 設定某個 key 跟 value(不過期) >>> the_conn.set("exmaple_key", ex=10) # 設定某個 key 跟 value(過期時間十秒,想要用毫秒的用 px=) >>> the_conn.get("exmaple_key") # 取得 exmaple_key 的 value >>> the_conn.delete("exmaple_key") # 刪除 exmaple_key
以上假設不用帳密,請自行替換 YOUR_REDIS_HOST ,為你的 Redis Host Url
Leave a Reply