Re: Differences between int8 and int4 as pkeys and fkeys

Поиск
Список
Период
Сортировка
От Thomas Lockhart
Тема Re: Differences between int8 and int4 as pkeys and fkeys
Дата
Msg-id 398B7BD0.29F6B732@alumni.caltech.edu
обсуждение исходный текст
Ответ на random() function produces wrong range  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
> I had been using int8 as primary / foreign keys pairs.   After joining
> several large tables on the keys, I noticed about a 30/40% speed
> improvement just in changing the keys from int8 to int4 data types.

Apparently it should be that much (though this is the first report
either way). Here are some reasons why there is the difference:

1) int4 is "pass by value", int8 is "pass by reference". So int8 hits
palloc() every time you generate a new one, whereas int4 may just copy
the data itself.

2) int8 is implemented in software libraries, at least on 32-bit
machines. int4 is implemented in hardware. Libraries are slower than
~1cycle hardware operations.
                         - Thomas


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

Предыдущее
От: Thomas Lockhart
Дата:
Сообщение: Re: Installation Report for powerpc-apple-netbsdelf1.5
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Security choices...