Re: using database for queuing operations?

Поиск
Список
Период
Сортировка
От Ron St-Pierre
Тема Re: using database for queuing operations?
Дата
Msg-id 414F45DD.3050901@syscor.com
обсуждение исходный текст
Ответ на using database for queuing operations?  (Mark Harrison <mh@pixar.com>)
Список pgsql-general
Mark Harrison wrote:

>     select * from nameq where serial = (select min(serial) from nameq);
>
You might also want to try this as:
     select * from nameq where serial = (select serial from nameq order
by serial asc limit 1);
and see if runs faster.

Ron


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

Предыдущее
От: jao@geophile.com
Дата:
Сообщение: Any reason not to use inheritance?
Следующее
От: Scott Ribe
Дата:
Сообщение: Re: using database for queuing operations?