Does Comet(long Polling) Needed For Django Activity Stream
Does anyone has idea how to display django stream actions on templates. Does I need to use Comet to fetch values to display on my template. Since, When I am doing action.send, it
Solution 1:
I've checked django-activity-stream, seems it has no magic for rendering activity updating dynamically.
Check django-socketio for websockets way. Or simply polling tech would satisfy your requirement if the expected access loading is not that high.
I'm not quite sure what you mean about "fetch actions directly to template using various templatetags" because template rendering is accomplished during request-response proceduret.
Post a Comment for "Does Comet(long Polling) Needed For Django Activity Stream"