Re: LIKE search and performance
От | Craig James |
---|---|
Тема | Re: LIKE search and performance |
Дата | |
Msg-id | 46560CD0.404@emolecules.com обсуждение исходный текст |
Ответ на | Re: LIKE search and performance (Alvaro Herrera <alvherre@commandprompt.com>) |
Список | pgsql-performance |
Alvaro Herrera wrote: >> Just out of curiosity: Does Postgress store a duplicate of the data in the >> index, even for long strings? I thought indexes only had to store the >> string up to the point where there was no ambiguity, for example, if I have >> "missing", "mississippi" and "misty", the index only needs "missin", >> "missis" and "mist" in the actual index. > > What would happen when you inserted a new tuple with just "miss"? You > would need to expand all the other tuples in the index. That's right. This technique used by some index implementations is a tradeoff between size and update speed. Most wordsin most natural languages can be distinguished by the first few characters. The chances of having to modify more thana few surrounding nodes when you insert "miss" is small, so some implementations choose this method. Other implementationschoose to store the full string. I was just curious which method Postgres uses. Craig
В списке pgsql-performance по дате отправления: