From: | "Derek Barrett" <derekbarrett(at)graffiti(dot)net> |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Question regarding contrib/fulltextindexing |
Date: | 2002-07-13 20:53:04 |
Message-ID: | 20020713205304.14671.qmail@graffiti.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
Hi Everybody,
I've been using Postgres for a few months now and have been very impressed with it so far. The user community is also very helpful!
I was wondering if the fulltextindex module would be useful in my situation.
On the document page,
http://techdocs.postgresql.org/techdocs/fulltextindexing.php
the explanation is that the module works well with like queries like this:
SELECT *
FROM table
WHERE
f1.string ~ '^perth
AND f2.string ~ '^stralia'
In my situation, I need to match exact words, so I've used regular expressions to search on a varchar(10000) field:
SELECT *
FROM table
WHERE description ~* ('[^a-zA-Z0-9]($keyword[$x])[^a-zA-Z0-9]');
Would this module still be useful in my situation?
Thanks,
Derek
--
_______________________________________________
Get your free email from http://www.graffiti.net
Powered by Outblaze
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew McMillan | 2002-07-14 00:16:59 | Re: Question regarding contrib/fulltextindexing |
Previous Message | KRB | 2002-07-13 02:43:17 | How can I tell what port my postgreSQL server is running on? |