Re: TEXT field and Postgresql Perfomance

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: TEXT field and Postgresql Perfomance
Дата
Msg-id 20050108040323.GA13889@wolff.to
обсуждение исходный текст
Ответ на TEXT field and Postgresql Perfomance  ("Loren M. Lang" <lorenl@alzatex.com>)
Ответы Re: TEXT field and Postgresql Perfomance
Re: TEXT field and Postgresql Perfomance
Re: TEXT field and Postgresql Perfomance
Список pgsql-performance
On Fri, Jan 07, 2005 at 19:36:47 -0800,
  "Loren M. Lang" <lorenl@alzatex.com> wrote:
> Do large TEXT or VARCHAR entries in postgresql cause any performance
> degradation when a query is being executed to search for data in a table
> where the TEXT/VARCHAR fields aren't being searched themselves?

Yes in that the data is more spread out because of the wider rows and that
results in more disk blocks being looked at to get the desired data.

> Since, according to the postgresql docs, theirs no performance
> difference between VARCHAR and TEXT, I'm assuming VARCHAR is identical
> to TEXT entries with a restriction set on the length.  And since TEXT
> can be of any possible size, then they must be stored independently of

No.

> the rest of the table which is probably all stored in a fixed size rows

No, Postgres uses variable length records.

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

Предыдущее
От: "Loren M. Lang"
Дата:
Сообщение: TEXT field and Postgresql Perfomance
Следующее
От: Alex Turner
Дата:
Сообщение: Re: TEXT field and Postgresql Perfomance