Programming/Python
Redis Notifications + Python 연동
개요Redis는 Key가 Update 되면, 구독 중인 여러 프로그램으로 Notification 해주는 기능이 존재한다.프로그램은 Redis의 Notification을 받으면, 자신이 구독한 Key에 대해서 Event Handler를 동작시킬 수 있다. 본 페이지에서는 이러한 Redis Server의 Notification 기능을 Python 프로그램과 연동시키는 과정을 설명한다. 의존성 설치sudo apt-get updatesudo apt-get install redispip3 install redis 1. Redis Server 설정 수정 CONFIG SET을 통해 외부 프로그램이 Notification을 수신받을 수 있도록 Redis Server 설정을 수정 $ redis-cli> CONFIG ..
2024. 10. 1. 19:16