Fwd: Re: Combine multiple text search configuration

From: Johannes Graën <johannes(at)selfnet(dot)de>
To: hmidi slim <hmidi(dot)slim2(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Fwd: Re: Combine multiple text search configuration
Date: 2017-11-09 08:11:07
Message-ID: 76712239-7181-5c03-5457-5b5ba2af679b@selfnet.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 2017-11-07 08:27, hmidi slim wrote:
> Hi, 
> Thank for your proposition but when to use this query : 
> (to_tsvector('english', document) || to_tsvector('french', document)) @@
> (to_tsquery('english', query) || to_tsquery('french', query))
> I think that the performance decrease and not a good solution for big
> amount of data. Is it?

You have more lexems when you combine two languages, but not twice as
many as there will be some overlap. That means your index will also be
be bigger than a single language index. Anyhow I would expect this
variant to perform better than querying two single columns
simultaneously. Maybe one of the FTS developers could comment on this?

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Allan Kamau 2017-11-09 08:59:06 Re: Migrating money column from MS SQL Server to Postgres
Previous Message Johannes Graën 2017-11-09 08:09:49 Re: Combine multiple text search configuration