python2.7連線操作redis的幾種方法
python版本:2.7
首先需要先安裝redis模組:
wget
tar zxvf redis-2.10.3.tar.gz
cd redis-2.10.3
python setup.py install
備註:安裝方法可以參考INSTALL檔案內容
#cat INSTALL
Please use
python setup.py install
and report errors to Andy McCurdy (sedrik@gmail.com)
然後開始匯入redis模組
[root@test ~/python]#python
Python 2.7.12 (default, Jun 1 2018, 14:00:01)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import redis
>>>
以下是操作redis的四種方法:
#cat 1.py
#encoding=utf-8
import redis
r = redis.StrictRedis(host='localhost', port=6379)
print r.ping()
#cat 2.py
#encoding=utf-8
import redis
r = redis.StrictRedis(host='127.0.0.1', port=6379, db=0)
print r.ping()
#cat 3.py
#encoding=utf-8
import redis
pool = redis.ConnectionPool(host='localhost', port=6379, decode_responses=True)
r = redis.Redis(connection_pool=pool)
print r.ping()
#cat 4.py
# -*- encoding: UTF-8 -*-
import redis
r = redis.Redis(host='localhost', port=6379, decode_responses=True)
print r.ping()
首先需要先安裝redis模組:
wget
tar zxvf redis-2.10.3.tar.gz
cd redis-2.10.3
python setup.py install
備註:安裝方法可以參考INSTALL檔案內容
#cat INSTALL
Please use
python setup.py install
and report errors to Andy McCurdy (sedrik@gmail.com)
然後開始匯入redis模組
[root@test ~/python]#python
Python 2.7.12 (default, Jun 1 2018, 14:00:01)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import redis
>>>
以下是操作redis的四種方法:
#cat 1.py
#encoding=utf-8
import redis
r = redis.StrictRedis(host='localhost', port=6379)
print r.ping()
#cat 2.py
#encoding=utf-8
import redis
r = redis.StrictRedis(host='127.0.0.1', port=6379, db=0)
print r.ping()
#cat 3.py
#encoding=utf-8
import redis
pool = redis.ConnectionPool(host='localhost', port=6379, decode_responses=True)
r = redis.Redis(connection_pool=pool)
print r.ping()
#cat 4.py
# -*- encoding: UTF-8 -*-
import redis
r = redis.Redis(host='localhost', port=6379, decode_responses=True)
print r.ping()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2156432/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- sqlplus連線資料庫的幾種方法SQL資料庫
- 批次殺死MySQL連線的幾種方法MySql
- xml操作的幾種方法XML
- go~連線redis的方法GoRedis
- 使用ABAP操作Excel的幾種方法Excel
- VMware連線網路的幾種方式
- java操作redis叢集連線池JavaRedis
- Golang 連線池的幾種實現案例Golang
- 幾種集合的幾種方法
- Jedis使用連線池操作redis叢集Redis
- PHP 技術卡片 - 字串連線的幾種方式PHP字串
- mysql資料庫連表查詢的幾種方法MySql資料庫
- redis的幾種型別解析Redis型別
- Laravel redis 連不同的連線LaravelRedis
- windows系統下實現Redis的配置與連線操作WindowsRedis
- 117 遠端連線mysql資料庫的幾種方式MySql資料庫
- Java裡連線字串的幾種方式以及優缺點Java字串
- Stream 的幾種中間操作
- PHP 操作 Redis 的基本方法PHPRedis
- 動態IPvps簡介,連線vps的操作方法
- 使用 JS 來動態操作 css ,你知道幾種方法?JSCSS
- 淺析SignalR連線生命週期的幾個重要方法SignalR
- 三種獲取redis的連線,以及redis_String型別演示(適合新手)Redis型別
- ss:檢視網路連線的另一種方法
- 批次殺死MySQL連線的四種方法詳解MySql
- [Redis] 淺談Redis內的幾種資料型別Redis資料型別
- java操作Oracle 方式一 ( 連線-》操作-》斷開連線 )JavaOracle
- oracle資料庫透過sqlplus連線的幾種方式介紹Oracle資料庫SQL
- 使用PS5手柄連線遊戲裝置無反應的幾種解決方法遊戲
- Laravel 重定向的幾種方法Laravel
- 建樹的幾種常用方法
- MATLAB 生成exe 的幾種方法Matlab
- xbox手柄連線電腦怎麼操作 xbox無線有線連線電腦方法介紹
- ServiceStack.Redis的原始碼分析(連線與連線池)Redis原始碼
- 使用telnet連線redisRedis
- kubernetes pod內抓包,telnet檢查網路連線的幾種方式
- css居中幾種方法CSS
- Redis實現分散式鎖的幾種方案Redis分散式