Re: daitch_mokotoff module
Dag Lem <dag@nimrod.no>
From: Dag Lem <dag@nimrod.no>
To: Alvaro Herrera <alvherre@alvh.no-ip.org>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2022-12-23T21:44:26Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Avoid using non-ASCII commentary in daitch_mokotoff.c.
- 1c54b93a8cf9 16.0 landed
-
Remove some non-ASCII symbols from a comment.
- d6b5dee42de7 16.0 landed
-
Remove useless dependencies in daitch_mokotoff_header.pl.
- 2bfbad9c4220 16.0 landed
-
Pacify perlcritic.
- edc627ae2763 16.0 landed
-
Add support for Daitch-Mokotoff Soundex in contrib/fuzzystrmatch.
- a290378a3752 16.0 landed
-
Enable routine running of citext's UTF8-specific test cases.
- c2e8bd27519f 15.0 landed
Alvaro Herrera <alvherre@alvh.no-ip.org> writes: > I wonder why do you have it return the multiple alternative codes as a > space-separated string. Maybe an array would be more appropriate. Even > on your documented example use, the first thing you do is split it on > spaces. In the example, the *input* is split on whitespace, the returned soundex codes are not. The splitting of the input is done in order to code each word separately. One of the stated rules of the Daitch-Mokotoff Soundex Coding is that "When a name consists of more than one word, it is coded as if one word", and this may not always be desired. See https://www.avotaynu.com/soundex.htm or https://www.jewishgen.org/InfoFiles/soundex.html for the rules. The intended use for the Daitch-Mokotoff soundex, as for any other soundex algorithm, is to index names (or words) on some representation of sound, so that alike sounding names with different spellings will match. In PostgreSQL, the Daitch-Mokotoff Soundex and Full Text Search makes for a powerful combination to match alike sounding names. Full Text Search (as any other free text search engine) works with documents, and thus the Daitch-Mokotoff Soundex implementation produces documents (words separated by space). As stated in the documentation: "Any alternative soundex codes are separated by space, which makes the returned text suited for use in Full Text Search". Best regards, Dag Lem