Re: Performace comparison of indexes over timestamp fields

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Performace comparison of indexes over timestamp fields
Дата
Msg-id 12213.1179843088@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Performace comparison of indexes over timestamp fields  (Arnau <arnaulist@andromeiberica.com>)
Список pgsql-performance
Arnau <arnaulist@andromeiberica.com> writes:
> As you can see the time difference are very big
>    Timestamp:        318.328 ms
>    int8 index:       120.804 ms
>    double precision: 57.065 ms

As already suggested elsewhere, you probably weren't sufficiently
careful in taking your measurements.

A look at the code says that int8 comparison ought to be the fastest
of these.  If timestamps are implemented as floats (which you didn't
say) their comparison speed ought to be *exactly* the same as floats,
because the comparison functions are line-for-line the same.  If
timestamps are implemented as int8 then they should be similar to
int8 comparisons, maybe a tad slower due to an extra level of function
call.  But in any case it seems likely that the actual comparison
function calls would be just a small fraction of the runtime.

            regards, tom lane

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

Предыдущее
От: PFC
Дата:
Сообщение: Re: Tips & Tricks for validating hardware/os
Следующее
От: Chander Ganesan
Дата:
Сообщение: Domains versus Check Constraints