Re: [HACKERS] Re: Mysql 321 - Mysql 322 - msql

Поиск
Список
Период
Сортировка
От Tom Ivar Helbekkmo
Тема Re: [HACKERS] Re: Mysql 321 - Mysql 322 - msql
Дата
Msg-id 86ogptmfo3.fsf@athene.nhh.no
обсуждение исходный текст
Ответ на Re: Mysql 321 - Mysql 322 - msql  (The Hermit Hacker <scrappy@hub.org>)
Ответы Re: [HACKERS] Re: Mysql 321 - Mysql 322 - msql
Список pgsql-hackers
The Hermit Hacker <scrappy@hub.org> writes:

>     What do you mean by "fulltext searching"?

He's talking about inverted text indices, where text is indexed such
that a word is the key, and the index returns pointers to all the
places where that word occurs.  Knowledge of word structure is usually
built in, so that "hacks", "hacker", "hackers", "hacking" and so on
are known to be derivatives of "hack", and can match it if requested.
Noise words such as "a", "the" and so forth are usually not indexed.

Inverted indexed text storage tends to take up much space, but there
are ways to reduce this, and the best implementations do it remarkably
well.  A simple example: it is not really necessary to actually store
the original text; it can instead be a sequence of links to the store
of all individual words in the text database.

See http://glimpse.cs.arizona.edu/ for a powerful inverted indexing
engine and various related software.

-tih
-- 
Popularity is the hallmark of mediocrity.  --Niles Crane, "Frasier"


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

Предыдущее
От: Oleg Broytmann
Дата:
Сообщение: Re: [HACKERS] The Interfaces list
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] Re: Mysql 321 - Mysql 322 - msql