Re: Bad performance of SELECT ... where id IN (...) - Mailing list pgsql-performance

From Grzegorz Jaśkiewicz
Subject Re: Bad performance of SELECT ... where id IN (...)
Date
Msg-id 2f4958ff0909261058h25c8a498p38c561c9aff19aa7@mail.gmail.com
Whole thread Raw
In response to Bad performance of SELECT ... where id IN (...)  (Xia Qingran <qingran.xia@gmail.com>)
List pgsql-performance
if you reuse that set a lot, how about storing it in a table , and doing the join on db side ? 
if it is large, it sometimes makes sense to create temp table just for single query (I use that sort of stuff for comparing with few M records). 
But temp tables in that case have to be short lived, as they can't reuse space (no FSM in temporary table world I'm afraid, I hope it will be fixed at some stage tho).

pgsql-performance by date:

Previous
From: Pierre Frédéric Caillaud
Date:
Subject: Re: PG 8.3 and large shared buffer settings
Next
From: Jeff Janes
Date:
Subject: Re: PG 8.3 and large shared buffer settings