当一个表数据记录过大时就会出现性能瓶颈,而一般对应的解决办法是要么做分区表,要么分表,分区表就不说了,分表又分为垂直分割和水平分割,具体区别请自行搜索。一般而言,分库分表属于水平分割,按照一定的规则将数据插入到不同的表中去。而分库则可以很方便的转移数据库的压力,比如将一个很大库的分别放在不同的服务器上。
下面是我写的一个分库分表的实现:
$conf) {
list($from, $to) = explode('-', $key);
if ($from <= $database_id && $database_id <= $to) {
$the_config = $conf;
}
}
$this->dbname = $dbname . '_' . $database_id;
$this->table = $table . '_' . $table_id;
} else {
$this->dbname = $dbname;
$this->table = $table;
$the_config = $config['db'][$dbname];
}
$c = $the_config;
if (isset($c['unix_socket']) && $c['unix_socket']) {
$this->dsn = sprintf('mysql:dbname=%s;unix_socket=%s', $this->dbname, $c['unix_socket']);
} else {
$this->dsn = sprintf('mysql:dbname=%s;host=%s;port=%s', $this->dbname, $c['host'], $c['port']);
}
$this->user = $c['user'];
$this->password = $c['password'];
}
}
null,
'host' => 'localhost',
'port' => '3306',
'user' => 'root',
'password' => '',
);
$config = array(
// 不进行分库分表的数据库
'db' => array(
'my_site' => $default,
),
// 分库分表
'shared' => array(
'user' => array(
'host' => array(
/**
* 编号为 0 到 10 的库使用的链接配置
*/
'0-10' => $default,
/**
* 编号为 11 到 28 的库使用的链接配置
*/
'11-28' => $default,
/**
* 编号为 29 到 99 的库使用的链接配置
*/
'29-99' => $default,
),
// 分库分表规则
/**
* 下面的配置对应百库百表
* 如果根据 uid 进行分表,假设 uid 为 543234678,对应的库表为:
* (543234678 / 1) % 100 = 78 为编号为 78 的库
* (543234678 / 100) % 100 = 46 为编号为 46 的表
*/
'database_split' => array(1, 100),
'table_split' => array(100, 100),
),
),
);
return $config;
config = new Config($this->dbnamePrefix, $this->tablePrefix, $id);
$this->connection = new Pdo($this->config->dsn, $this->config->user, $this->config->password);
$this->table = $this->config->table;
}
public function update(array $data, array $where = array())
{
}
public function select(array $where)
{
}
public function insert(array $data)
{
}
public function query($sql)
{
return $this->connection->query($sql);
}
}