0

I am working on a new Django application and would like to have functionality where one user makes a change and all other users viewing that database record receive the change.

I have seen similar functionality in frameworks like Derby and Meteor. Is this even possible using Django?

3
  • Check signals: docs.djangoproject.com/en/dev/topics/signals Commented Oct 16, 2013 at 17:56
  • django-notifications ? Commented Oct 16, 2013 at 18:03
  • While they are "viewing"? Are you talking real-time in here? Because that takes it to another level beyond Django, i.e. frontend work has to be done as well. Commented Oct 16, 2013 at 18:10

1 Answer 1

2

If you need to save your data, you should use signals. If you wanna update data on changing instance in database, you can do it with web sockets.socket.io

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.