dongliao3742 2011-08-02 06:56
浏览 54
已采纳

将`INT`主键打包成一个`LONG`

Is it efficient to "pack" two INT primary keys (a composite key) into a single BIGINT primary key? Can it be done automatically within mySQL or does it need to be done in the client (PHP, C++)?

I'm creating a directional graph connecting user IDs to one another (e.g. for a friend-finder) in mySQL.

MySQL supports 8-byte BIGINTs and 4-byte INTs, so the packer might look something like:

id_edge = ((BIGINT)id_from)*pow(2,31) + ((BIGINT)id_to)

How do the big boys (FB, LI) do it? Is it easier or better to have three "independent" fields:

CREATE  TABLE `things`.`connections` (
`id_edge` BIGINT NOT NULL AUTO_INCREMENT COMMENT 'Need a single pk for gii
' ,
`id_from` INT NOT NULL ,
`id_to` INT NOT NULL ,
....
  • 写回答

2条回答 默认 最新

  • dongpo1216 2011-08-02 07:01
    关注

    No. You shouldn't be seeking to micro-optimise the storage. Each column should store 1 piece of data - no more and no less.

    If you implemented the packing you propose, you'd make indexing impossible - a full table scan would be required to find e.g. all rows with id_to equal to 19.


    You can also read Chapter 13 of the MySQL manual, which discusses the various storage engines and how they actually store table data.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 我的数据无法存进链表里
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端