In a django view, I need to append string data to the end of an existing text column in my database. So, for example, say I have a table named \"ATable\", and it has a fiel
And if you get this running, it isn't thread safe. While your update is running, some other process can update a model not knowing the data in the database is updated.
You have too acquire a lock, but don't forget this senario:
Now the field update became undone by the model instance in Django (Ghost write)