欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mysql分表算法 博客分类: DATABASE mysql分表 

程序员文章站 2024-03-16 14:55:58
...

1. 取模  uid % 20 + 1。(分20张表)

2. hash
function get_hash($id){
       $str = bin2hex($id);
       $hash = substr($str, 0, 4);
       if (strlen($hash)<4){
           $hash = str_pad($hash, 4, "0");
       }
       return $hash;
}
3. md5(uid)
4.按时间段 
相关标签: mysql 分表