vote up 0 vote down star
1

I am trying to do full text searching in PostgreSQL 8.3. It worked splendidly, so I added in synonym matching (e.g. 'bob' == 'robert') using a synonym dictionary. That works great too. But I've noticed that it apparently only allows a word to have one synonym. That is, 'al' cannot be 'albert' and 'allen'.

Is this correct? Is there any way to have multiple dictionary matches in a PostgreSQL synonym dictionary?

For reference, here is my sample dictionary file:

bob    robert
bobby  robert
al     alan
al     albert
al     allen

And the SQL that creates the full text search config:

CREATE TEXT SEARCH DICTIONARY nickname (TEMPLATE = synonym, SYNONYMS = nickname);
CREATE TEXT SEARCH CONFIGURATION dxp_name (COPY = simple);
ALTER TEXT SEARCH CONFIGURATION dxp_name ALTER MAPPING FOR asciiword WITH nickname, simple;

What am I doing wrong? Thanks!

flag

2 Answers

vote up 1 vote down check

That's a limitation in how the synonyms work. What you can do is turn it around as in:

bob    robert
bobby  robert
alan   al
albert al
allen  al

It should give the same end result, which is that a search for either one of those will match the same thing.

link|flag
Hmm. That helps, though I guess it means that there is no possible way to have a many to many relationship. For example, this is impossible to rectify: vin vincent vin vincenzo vinnie vincent vinnie vincenzo Thanks though! – Ryan VanMiddlesworth Jul 31 at 15:59
vote up 0 vote down

In the 8.4 documentation, it talks about a replacement synonym dictionary, maybe that will be helpful?

http://www.postgresql.org/docs/8.4/interactive/dict-xsyn.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.