Re: database design with temporary tables

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: database design with temporary tables
Дата
Msg-id c445dbed-f832-273a-c183-afb7a41b5186@aklaver.com
обсуждение исходный текст
Ответ на Re: database design with temporary tables  (Mladen Gogala <gogala.mladen@gmail.com>)
Ответы Re: database design with temporary tables  (Mladen Gogala <gogala.mladen@gmail.com>)
Список pgsql-general
On 8/29/21 10:41 AM, Mladen Gogala wrote:
> 
> On 8/29/21 12:24 PM, Adrian Klaver wrote:
>> Presumably not. Temporary tables only live at most for the length of a 
>> session. It would be a really bad idea to hold sessions open for 24 
>> hours. That is assuming nothing else causes the session to drop and 
>> the data to be lost. 
> 
> Well, that's precisely how application servers work. The allocate 
> connection pool and keep them open for a very long time.

The pool is maintained, the individual connections(sessions) come and 
go. Otherwise there would be no point to having a pool. Every time the 
connection(session) is closed the temporary table disappears.


-- 
Adrian Klaver
adrian.klaver@aklaver.com



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

Предыдущее
От: Mladen Gogala
Дата:
Сообщение: Re: database design with temporary tables
Следующее
От: Stephen Frost
Дата:
Сообщение: Re: Can we get rid of repeated queries from pg_dump?