On 11/22/14, Adrian Klaver wrote:
> On 11/21/2014 07:38 PM, zach cruise wrote:
>> On 11/20/14, Adrian Klaver wrote:
>>> On 11/20/2014 04:57 PM, zach cruise wrote:
On 11/20/14, Adrian Klaver wrote:
> On 11/20/2014 12:30 PM, zach cruise wrote:
>>>
>>> For more info see:
>>>
>>
Hi All,
We have a single table which does not have any foreign key references.
id_A (bigint)
id_B (bigint)
val_1 (varchar)
val_2 (varchar)
The primary key of the table is a composite of id_A and id_B.
Reads and writes of this table are highly concurrent and the table has
millions of rows. We ha
On 24/11/14 16:51, Sanjaya Vithanagama wrote:
Hi All,
We have a single table which does not have any foreign key references.
id_A (bigint)
id_B (bigint)
val_1 (varchar)
val_2 (varchar)
The primary key of the table is a composite of id_A and id_B.
Reads and writes of this table are highly conc
Hi,
I have a GIN index but the planner rechecks the condition. When many rows
are foud in the index that is very slow:
EXPLAIN SELECT "tracks".* FROM "tracks" WHERE (to_tsvector('simple',
normalized_artist || ' ' || normalized_title) @@ to_tsquery('love'));