full text search index - Mailing list pgsql-general

From David G. Johnston
Subject full text search index
Date
Msg-id CAKFQuwajDG=GPDJ9tkyTFPY1BRo4RfehjRbphYEB6NRX5AFOXQ@mail.gmail.com
Whole thread Raw
In response to full text search index  (Patrick Baker <patrickbakerbr@gmail.com>)
Responses Re: full text search index
List pgsql-general
On Thursday, May 26, 2016, Patrick Baker <patrickbakerbr@gmail.com> wrote:
Hi there,

I've got the following query:

SELECT COUNT(DISTINCT j0_.id) AS sclr10
FROM customers j0_
WHERE ((LOWER(j0_.name_first) LIKE '%some%'
        OR LOWER(j0_.name_last) LIKE '%some%')       
       AND j0_.id = 5)
  AND j0_.id = 5

The query is taking ages to run.

I read about wildcards and it seems I have to use a function with to_tsvector ? 

CREATE INDEX CONCURRENTLY ON public.customers USING gin ("clientid", ("full_text_universal_cast"("name_first"::"text")), ("full_text_universal_cast"("name_last"::"text")));

full_text_universal_cast:
CREATE OR REPLACE FUNCTION public.full_text_universal_cast(doc_data "text")
  RETURNS "tsvector" AS
$BODY$
SELECT to_tsvector('english', COALESCE(TRIM(CAST(doc_data AS TEXT)), ''));
$BODY$
  LANGUAGE sql IMMUTABLE
  COST 1000;



Would be something like above? Because it's not working...

What am I missing guys?
Thanks 

Maybe Lucas Possamai can help.  He seems to be a little bit further along in this exercise.

I'm too tired to care at the moment.  And I haven't had much practical work here anyway.

David J.
 


pgsql-general by date:

Previous
From: Patrick Baker
Date:
Subject: full text search index
Next
From: Andrej Vanek
Date:
Subject: Re: empty pg_stat_replication when replication works fine?