Re: Delay INSERT

Поиск
Список
Период
Сортировка
От Christopher Browne
Тема Re: Delay INSERT
Дата
Msg-id m37jjy8lv9.fsf@knuth.knuth.cbbrowne.com
обсуждение исходный текст
Ответ на PHP and Postgres setup  (germ germ <super_code_monkey@yahoo.com>)
Список pgsql-php
After a long battle with technology, skyer@on.kg ("ON.KG"), an earthling, wrote:
> Does PostgreSQL have something like "INSERT DELAYD" - like it is used in
> MySQL?
>
> or any other way to delay inserting?

What problem are you trying to solve by using "INSERT DELAYED"?

As far as I can tell, the problem solved using "INSERT DELAYED" is
that in MySQL AB's product, processes take out full table locks when
they modify tables.

That is completely irrelevant with PostgreSQL, as PostgreSQL does not
lock tables that way.

Unless your concern is something rather more abstruse, I think you're
trying to solve a problem that simply doesn't exist.  There is no
reason to delay inserts in PostgreSQL because there are no such locks.
--
(format nil "~S@~S" "cbbrowne" "gmail.com")
http://linuxdatabases.info/info/slony.html
"I would rather spend 10 hours reading someone else's source code than
10  minutes listening  to Musak  waiting for  technical  support which
isn't." -- Dr. Greg Wettstein, Roger Maris Cancer Center

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

Предыдущее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: New PHP/PostgreSQL functions
Следующее
От: Matthew Terenzio
Дата:
Сообщение: Re: PHP and Postgres setup