Replies: 1 comment 2 replies
-
The docs go a long way in explaining how the underlying system works, limitations, performance tuning, etc. Similarly, people can create their own trackers, customize the event model, and much more. When it comes to race conditions, any history tracking solution that operates in the application layer is subject to race conditions if it does not lock the row ahead of time. Triggers, on the other hand, snapshot the exact version of the row before the modification took place. What specific suggestions for the docs do you have? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
in the docs and the video presentation you suggest to jump back through events (and then revert) via the pgh_id. However, I just spent several days trying to figure out how a) this guarantees that I get the right revision of data (never used django before either) or b) how this sort of log/versioning system should be implemented on postgres in general - without a good answer. So I would love your input here.
Additionally I think it would add a lot of value to add this to the docs to:
Beta Was this translation helpful? Give feedback.
All reactions