Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- 페이지 최적화
- 장고로 ERP
- pip 오류
- 재고 관리
- Self ERP
- uiload
- pyside6
- 장고
- bzpopmin
- pyside6 ui
- QApplication
- 중량 관리
- django
- qwindows.dll
- optimization page
- channels
- 채널스
- django erp
- tensorflow
- ERP
- query 최적화
- django test
- django drf
- materialized
- 파이썬
- qpa_plugin
- django rank
- pip 설치
- test drive development
Archives
- Today
- Total
취미삼아 배우는 프로그래밍
고놈의 Channels / Channels_redis / BZPOPMIN 본문
When using Channels Library in Django.
It throws Errors when latest version of that.
redis.exceptions.ResponseError : unknown command 'BZPOPMIN'
Because:
It is the version issue.
Solution:
Succed version of that:
Django==5.1.6
channels==4.2.0
channels_redis==4.2.1
and
redis version is5.0.14.1(window version) << this is the problem
when use the latest version of redis(*7.4.1) it can throw error.
so you need to use downgraded version of redis.
at the last 4years ago docs.
use channels_redis 2.4.0.
It is too old for solutioning.
'파이썬(장고)' 카테고리의 다른 글
Django Channels 사용한 퀴즈 페이지 만들기. (1) | 2025.02.24 |
---|---|
Django로 개인 업무(ERP) 홈페이지 만들기-7 (11) | 2020.11.22 |
Django로 개인 업무(ERP) 홈페이지 만들기-6 (0) | 2020.11.16 |
Django로 개인 업무(ERP) 홈페이지 만들기-5 (0) | 2020.11.14 |
Django로 개인 업무(ERP) 홈페이지 만들기-4 (0) | 2020.11.13 |
Comments