↧
Answer by Evgeni Makarov for Subscribe to a redis channel in Django project
In order to handle subscriptions to redis, you will need to have a separate continuously running process (server) which listens to redis and then makes something with your data. django-channels will do...
View ArticleAnswer by Gor Kotikyan for Subscribe to a redis channel in Django project
There are a lot of alternatives. If you have FIFO issue you have to use queues in order to connect one microservice to another. For me, if you don’t have Big Data problem you can use RabbitMQ, It is...
View ArticleSubscribe to a redis channel in Django project
I have multiple applications written with nodejs or python/django or ... These services are working fine. But need to have pub/sub Async communication with each other. In nodejs there is no problem...
View Article