Home > php教程 > php手册 > 该如何使用thinkphp分表呢?

该如何使用thinkphp分表呢?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 10:19:14
Original
970 people have browsed it

thinkphp分表怎么使用
我预设了10个表 分别是 table_1、table_2、table_3....table_10

在Model中设置了partition:

protected $partition = array(
'field' => 'id',
'type' => 'id',
'expr' => '',
'num' => 10,
);
Copy after login

也使用了getPartitionTableName()
官方文档说是必须传入当前的数据。然后根据数据分析应该实际操作哪个数据表
而这个传入当前数据是什么数据, 我每次实验的结果都是联合查询!不能找到当前表名!

------解决方法--------------------
你的分表字段是 id (PS:T不错的PHP Q扣峮:276167802,验证:csl)
所以在传给 getPartitionTableName 的数据数组中必须含有关联键为 id 的元素

不过他的算法有点奇特
  $field   =   $data[$this->partition['field']];


            switch($this->partition['type']) {


                case 'id':


                    // 按照id范围分表


                    $step    =   $this->partition['expr'];


                    $seq    =   floor($field / $step)+1;


                    break;


.........


            return $this->getTableName().'_'.$seq;
Copy after login

按照你的设置,似乎应是 'type' => 'mod'
 case 'mod':


                    // 按照id的模数分表


                    $seq    =   ($field % $this->partition['num'])+1;


                    break;
Copy after login

------解决方法--------------------
你用 getPartitionTableName 取得的不就是表名吗?

有了表名不就和不分表时一样操作了吗?

以上是本文关于thinkphp分表如何使用的方法,希望本文对广大php开发者有所帮助,感谢阅读本文。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template