Re: Writting a "search engine" for a pgsql DB

Поиск
Список
Период
Сортировка
От Magnus Hagander
Тема Re: Writting a "search engine" for a pgsql DB
Дата
Msg-id 45E31F06.8080002@hagander.net
обсуждение исходный текст
Ответ на Re: Writting a "search engine" for a pgsql DB  (Madison Kelly <linux@alteeve.com>)
Список pgsql-performance
>   Joshua, I've been digging around the CVS (web) looking for the search
> engine code but so far have only found the reference (www.search) in
> 'general.php' but can't locate the file. You wouldn't happen to have a
> direct link would you?

It's all in module "portal". You will find the indexing stuff in
tools/search, and the search interface in system/page/search.php.

>   I think the more direct question I was trying to get at is "How do you
> build a 'relavence' search engine? One where results are returned/sorted
> by relevance of some sort?". At this point, the best I can think of,
> would be to perform multiple queries; first matching the whole search
> term, then the search term starting a row, then ending a row, then
> anywhere in a row and "scoring" the results based on which query they
> came out on. This seems terribly cumbersome (and probably slow, indexes
> be damned) though. I'm hoping there is a better way! :)

The tsearch2 ranking features are pretty good.

//Magnus


В списке pgsql-performance по дате отправления:

Предыдущее
От: Madison Kelly
Дата:
Сообщение: Re: Writting a "search engine" for a pgsql DB
Следующее
От: Mark Stosberg
Дата:
Сообщение: Re: Writting a "search engine" for a pgsql DB