Django Push HTTP Response to users [closed]
HTTP is inherently a “pull” protocol–i.e., a client pulls data from a server, waits around for a while and then pulls more data later. There’s actually no strictly HTTP way to “push” data to a client from a server. You have basically three options when you need to “push” to a client. (1) Do polling–use … Read more