tribedb
Version:
Unlimited expansion MySQL cluster storage system
43 lines (35 loc) • 995 B
JavaScript
/**
* * * *【简介】* * * *
*
* TribeDB 是一个mysql分布式集群储存系统。
* 采用分库分表的方式,在处理海量数据时获得更加优越的性能。
*
* Github :https://github.com/yangjiePro/TribeDB
* Home Page :http://yangjiePro.github.com/TribeDB
* API docs :http://yangjiePro.github.com/TribeDB
*
* * * *【依赖】* * * *
*
* TribeDB 基于 node-mysql 模块
* Github:https://github.com/mysqljs/mysql
* 安装: npm install mysql
*
* * * *【作者】* * * *
*
* 作者 :杨捷
* QQ :446342398
* 邮箱 :yangjie@jojoin.com
* 主页 :http://jojoin.com/user/1
* Github :https://github.com/yangjiePro
*
* 欢迎交流讨论或提交新的代码
*/
const mysql = require('mysql');
module.exports = Object.assign(
{
'escape': mysql.escape
},
require('./lib/config.js'),
require('./lib/pool.js'),
require('./lib/query.js')
);