Subject | Re: Full Text Search |
---|---|
Author | Roman Rokytskyy |
Post date | 2005-02-07T18:20:28Z |
> > Lester, let's assume we have this full-text feature. How do youNope, you didn't.
> > want to use it? Please sketch some queries.
>
> I did at the start :)
> > The idea is that one should be able to search for 'CAINE' andThis can be easily satisfied with a UDF that computes the SOUNDEX
> > match all the 'CAIN', 'KANE', 'CANE', 'KINE' equivalents, and then
> > search on 'BIRTH' or 'ISLE OF MAN' to further restrict the result
> >set.
code. Full-text search is primarily about phrases. So, if we take your
description as requirement - we don't need full-text search.
> I have an assortment of databases and documents forming the resultsWhat prevents you from creating a specific database and use Lucene in
> of searching for family history information. Ideally the whole lot
> needs to be massaged into a consistent database with links to each
> piece of source information relating to each 'person' record, but
> just searching the data is a start.
parallel to your database? If I understand your requirements
correctly, you do not really need an integration of full-text search
and SQL (which I assume should be used to specify queries).
Roman