python StrictRedis 모듈 연결 풀 connection 사용질문

3344 단어 python
오늘 redis 의 StrictRedis 모듈 을 사용 하 다가 문제 가 생 겼 어 요.
python 의 redis 모듈 에는 redis 와 strictredis 모듈 이 있다 는 것 을 잘 알 고 있 습 니 다.strictredis 는 redis-cli 와 같은 조작 방식 으로 입 참 순 서 는 redis-cli 의 순 서 를 따 르 고 redis 는 약간 다 를 수 있 기 때문에 공식 적 으로 strictredis 를 사용 하 는 것 을 추천 합 니 다.
redis 를 사용 할 때 연못 을 연결 하 는 방식 으로 조작 하기 때문에 다음 과 같은 호출 방식 이 있 습 니 다.
import redis

redis_conn = redis.StrictRedis(host='127.0.0.1',port=6379, decode_responses=True)

그리고 python 3 의 redis 구동 으로 인해 redis 모듈 을 통 해 저장 되 고 꺼 낸 문자열 string 은 모두 byte 형식 이 되 었 기 때문에 일반적으로 redis 링크 를 정의 할 때 StrictRedis 에서 decode 를 정의 합 니 다.responses=True,형식 변환 을 진행 합 니 다.
오늘 링크 풀 과 strictredis 를 결합 하여 사용 할 때 decoderesponses=True 가 효력 을 잃 었 습 니 다.액세스 한 내용 은 모두 byte 입 니 다.다음은 잘못된 쓰기 입 니 다.
import redis
from redis import ConnectionPool

pool = ConnectionPool(host='127.0.0.1',port=6379,max_connections=10)
redis_conn = redis.StrictRedis(connection_pool=pool, decode_responses=True)

다음은 순조롭게 실행 할 수 있 는 코드 입 니 다.
import redis
from redis import ConnectionPool

pool = ConnectionPool(host='127.0.0.1',port=6379,max_connections=10,decode_responses=True)
redis_conn = redis.StrictRedis(connection_pool=pool)

좋은 웹페이지 즐겨찾기