File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
## postgresql-lock
2
2
3
- Lock mechanism implemented with Postgres advisory locks.
3
+ Lock mechanism implemented with PostgreSQL advisory locks.
4
4
5
5
Easily implement distributed database locking.
6
6
@@ -25,10 +25,10 @@ pip install postgresql-lock
25
25
26
26
### Why would I use this?
27
27
28
- - Postgres table locks aren't sufficient for your use-case
29
- - Postgres row locks don't work on ` INSERT `
28
+ - PostgreSQL table locks aren't sufficient for your use-case
29
+ - PostgreSQL row locks don't work on ` INSERT `
30
30
- You want to prevent race conditions between ` INSERT ` and ` UPDATE ` on the same primary key
31
- - None of the aforementioned details fit your use-case, but you have Postgres installed and need to prevent race conditions in a distributed system
31
+ - None of the aforementioned details fit your use-case, but you have PostgreSQL installed and need to prevent race conditions in a distributed system
32
32
33
33
### Default operation
34
34
You can’t perform that action at this time.
0 commit comments