Re: longest prefix match

Поиск
Список
Период
Сортировка
От Jorge Godoy
Тема Re: longest prefix match
Дата
Msg-id 200802200825.49084.jgodoy@gmail.com
обсуждение исходный текст
Ответ на longest prefix match  (Dragan Zubac <zubac@vlayko.tv>)
Ответы Re: longest prefix match
Список pgsql-general
Em Wednesday 20 February 2008 05:55:07 Dragan Zubac escreveu:
>
> Anybody got any ideas/experiences/links for 'longest prefix match'
> solution in PostgreSQL ?
> Basically,put some telephone prefices in some kind of trie,and be able
> to perform fast lookups ?

Prefix or suffix?

For prefix you can use "SELECT number FROM table WHERE number LIKE '123%'".

For suffix you change the "%" to the beginning of the string, but then loose
the ability to use indices.  (Unfortunately, using suffixes is really
interesting for caller IDs since you don't always receive area code, country
code, etc.)

--
Jorge Godoy      <jgodoy@gmail.com>


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

Предыдущее
От: Jorge Godoy
Дата:
Сообщение: Re:
Следующее
От: Oleg Bartunov
Дата:
Сообщение: Re: longest prefix match