Keeping track of changes - Django

Posted by RadiantHex on Stack Overflow See other posts from Stack Overflow or by RadiantHex
Published on 2010-03-23T23:27:16Z Indexed on 2010/03/23 23:33 UTC
Read the original article Hit count: 326

Filed under:
|
|

Hi folks!!

I have various models of which I would like to keep track and collect statistical data.

The problem is how to store the changes throughout time.

I thought of various alternative:

  • Storing a log in a TextField, open it and update it every time the model is saved.
  • Alternatively pickle a list and store it in a TextField.
  • Save logs on hard drive.

What are your suggestions?

© Stack Overflow or respective owner

Related posts about python

Related posts about django