파이썬 설치는 되었다는 가정하게 작성 합니다.
파이썬을 설치하면 자동으로 Pip 명령어가 설치 되는 경우도 있지만, 그렇지 않은 경우도 있으므로
다음 명령을 이용하여 pip 패키지를 설치 한다.
윈도우즈 : https://www.lfd.uci.edu/~gohlke/pythonlibs/#pip/ 리눅스 : sudo apt-get install python-pip |
C:\Users\admin>pip install redis Collecting redis Downloading redis-2.10.6-py2.py3-none-any.whl (64kB) 47% |███████████████▏ | 30kB 130kB/s 63% |████████████████████▏ | 40kB 13 78% |█████████████████████████▏ | 51 94% |██████████████████████████████▎ 100% |███████████████████████████████ 199kB/s Installing collected packages: redis Successfully installed redis-2.10.6 |
redis 패키지가 설치 되어 있지 않으면 import 시에 다음과 같은 에러가 발생 함.
ModuleNotFoundError: No module named 'redis' |
import redis
try: conn = redis.StrictRedis( host='192.168.10.100', port=6379, db=2) print ('Set Record:', conn.set("test", "Nice to meet you")) print ('Get Record:', conn.get("test")) print ('Delete Record:', conn.delete("test")) print ('Get Deleted Record:', conn.get("test")) except Exception as ex: print ('Error:', ex) |
Set Record: True Get Record: b'Nice to meet you' Delete Record: 1 Get Deleted Record: None |