Re: Differences between int8 and int4 as pkeys and fkeys - Mailing list pgsql-hackers

From Thomas Lockhart
Subject Re: Differences between int8 and int4 as pkeys and fkeys
Date
Msg-id 398B7BD0.29F6B732@alumni.caltech.edu
Whole thread Raw
In response to random() function produces wrong range  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: Thomas Lockhart
Date:
Subject: Re: Installation Report for powerpc-apple-netbsdelf1.5
Next
From: Bruce Momjian
Date:
Subject: Re: Security choices...