Re: unlock rows

Поиск
Список
Период
Сортировка
От scott.marlowe
Тема Re: unlock rows
Дата
Msg-id Pine.LNX.4.33.0303131029490.21002-100000@css120.ihs.com
обсуждение исходный текст
Ответ на unlock rows  ("jose antonio leo" <jaleo8@storelandia.com>)
Ответы Re: unlock rows
Список pgsql-general
On Thu, 13 Mar 2003, jose antonio leo wrote:

> Hi guys,
>
> I want to control and I know the rows blocks in a table. If it is necesary
> unlock the rows.
> How can I do it?
> Can I put a timeout and unlock the rows after?
> Maybe a pgsql parameter?

Are you sure that's what you want?

Postgresql uses MVCC for locking, which is basically better than row level
locking.  In fact, this system allows multiple writes to be occuring to
your database, and for the readers to never be blocked.

Locking individual rows is a recipe for disaster under heavy parallel
load, and is usually overkill for data integrity in about 90% of all
applications.

What are you trying to accomplish?  Telling us that may help us figure out
a better (faster, more reliable, more scalable) answer.

Row locking is almost always NOT it.


В списке pgsql-general по дате отправления:

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: I cannot get the db to initialize. Please help.
Следующее
От: "scott.marlowe"
Дата:
Сообщение: Re: Help