เกณฑ์มาตรฐานคร่าวๆ:
4 ล้านบันทึกใน Postgres 9.x
Table A = base table with some columns
Table B = Table A + extra column id of type bigint with random numbers
Table C = Table A + extra column id of type text with random 16-char ASCII strings
ผลลัพธ์บนแล็ปท็อป RAM 8GB, i7, SSD:
Size on disk: A=261MB B=292MB C=322MB
Non-indexed by id: select count(*), select by id: 450ms same on all tables
Insert* one row per TX: B=9ms/record C=9ms/record
Bulk insert* in single TX: B=140usec/record C=180usec/record
Indexed by id, select by id: B=about 200us C=about 200us
* inserts to the table already containing 4M records
ดังนั้นดูเหมือนว่าการตั้งค่านี้ตราบใดที่ดัชนีของคุณพอดีกับ RAM ข้อความ bigint เทียบกับ 16-char จะไม่มีความแตกต่างในด้านความเร็ว