Channels vs Django-websocket-redis

2017-08-05 Thread Artem Malyshev
Hi, thanks for feedback! I need some time to dig into django-websocket-redis. I'll come back to you soon. Regards, Artem. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Channels vs Django-websocket-redis

2017-08-05 Thread Artem Malyshev
Hi, I look at django-websockets-redis really quickly. If you decide to use Redis ASGI layer it may look familiar. Main differences I notice so far: - ws4redis doesn't have concept of consumers and routing - it's coupled to the subset of WebSocket usage - it's propagate redis to the library api

Django runserver not working after installing redis for django channels

2017-09-11 Thread Artem Malyshev
Hi, Please check your redis installation. It should be at least minimum required version by redis-py. Regards, Artem. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an em

How express SQL query using Django ORM?

2018-10-14 Thread Artem Malyshev
Hi, I have an example application of the shop. Full application code is available at https://github.com/dry-python/tutorials/tree/master/django In this example, User can buy a subscription for different categories of the content. The user can subscribe for one day, one month or one year. Each

Re: How express SQL query using Django ORM?

2018-10-17 Thread Artem Malyshev
Hi, thanks for the reply! This gives me following query: SELECT "example_price"."category_id", "example_price"."cost" FROM "example_price" GROUP BY "example_price"."id", "example_price"."category_id", "example_price"."from_date", "example_price"."cost",