How to use table sharding in the thinkphp project (applicable to big data)-PHP source code

Source: Internet
Author: User
The idea of using table sharding in the thinkphp project (applicable to Big Data) php code

/*** Get the table sharding name * @ param $ tableName basic table name */function getSubTable ($ tableName, $ companyId = null) {// Put 50 group data in each table $ table_user = 50; // confirm the companyInfo array if (null ===$ companyId) // unspecified, obtain {$ companyInfo = M ('Company')-> find (COMPANY_ID);} else {$ mCompany = M ('Company') based on the session '); $ companyInfo = $ mCompany-> where ('Id = '. $ companyId)-> find ();} // if (isset ($ companyInfo ['Table _ name' ]) & $ CompanyInfo ['Table _ name']! = '') {Return $ tableName. '_'. $ companyInfo ['Table _ name'];} // if (! $ CompanyInfo) {return $ tableName;} // No id is specified for the company Table. The table name (company id % 50) is returned by algorithm) = Shard id $ total = $ companyInfo ['id'] % $ table_user; // in short-circuit mode, the current plane $ total ==== 0 is true. when it is true, $ total = 1 $ total === 0 & $ total = 1; return $ tableName. '_'. $ total ;}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.