Hi all,
I’m working on a Django based web application and I’m wanting to make my Django database (Postgres) transactions ACID compliant. However I’m wondering if this is fully achieved by using transaction.atomic and select_for_update?
From my understanding this ensures atomicity, isolation and consistency at the very minimum but I’m having a hard time understanding if they both provide all ACID properties. If not, what steps can I take to achieve those 3 properties? Any thoughts and explanations would be much appreciated, thank you!