I'm looking into channels lately in Django and from what I see in all the examples it is used for chat like applications. But I was wondering if I can use it to push notifications about database changes.
So for example, what if my "view" consumer would poll the database and push notification every time it changed to the client. It is as if all clients of that page connect to the same chat room and wait for "posts" from the server.
I know I can poll from the client using Ajax but I was wondering if I can use Django channels for that and have the server do the polling.