https://github.com/nattatorn-dev/test-postgre-concurrency
Test Postgres locks within a transaction, Isolation and Locking
https://github.com/nattatorn-dev/test-postgre-concurrency
Last synced: about 2 months ago
JSON representation
Test Postgres locks within a transaction, Isolation and Locking
- Host: GitHub
- URL: https://github.com/nattatorn-dev/test-postgre-concurrency
- Owner: nattatorn-dev
- Created: 2018-10-10T07:30:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-10T07:40:23.000Z (over 6 years ago)
- Last Synced: 2025-03-29T05:38:08.278Z (about 2 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# test-postgre-concurrency
Test Postgres locks within a transaction, Isolation and LockingI try to write database code to make sure that it's not subject to race conditions, to make sure that I've locked the correct rows or tables. But I often wonder: Is my code correct? Is it possible to force any existing race conditions to manifest? I want to be sure that if they do happen in a production environment my application will do the right thing.
### Solutions
It's concurrency testing on postgreSQL to find great solution for read/write command in a row at the same time!!