Force a "lock" with Postgres and GO

5.4k Views Asked by At

I am new to Postgres so this may be obvious (or very difficult, I am not sure).

I would like to force a table or row to be "locked" for at least a few seconds at a time. Which will cause a second operation to "wait".

I am using golang with "github.com/lib/pq" to interact with the database.

The reason I need this is because I am working on a project that monitors postgresql. Thanks for any help.

1

There are 1 best solutions below

0
On

You can also use select ... for update to lock a row or rows for the length of the transaction.

Basically, it's like:

begin;
select * from foo where quatloos = 100 for update;
update foo set feens = feens + 1 where quatloos = 100;
commit;

This will execute an exclusive row-level lock on foo table rows where quatloos = 100. Any other transaction attempting to access those rows will be blocked until commit or rollback has been issued once the select for update has run.

Ideally, these locks should live as short as possible.

See: https://www.postgresql.org/docs/current/static/explicit-locking.html