An analysis of the maximum number of data _php examples supported by thinkphp AddAll

Source: Internet
Author: User
Tags addall bulk insert

The model operation in Thinkphp has two methods: Add () and AddAll

Copy Code code as follows:

$User = M ("User"); Instantiating the User object
$data [' name '] = ' thinkphp ';
$data [' email '] = ' ThinkPHP@gmail.com ';
$User->add ($data);
$dataList [] = Array (' name ' => ' thinkphp ', ' email ' => ' thinkphp@gamil.com ');
$dataList [] = Array (' name ' => ' onethink ', ' email ' => ' onethink@gamil.com ');
$User->addall ($dataList);

The AddAll method can do the function of adding data in bulk, which is the usage of MySQL:

Copy Code code as follows:

INSERT into Tbl_name (a,b,c) VALUES (1,2,3), (4,5,6), (7,8,9);

The amount of data in many cases to choose the bulk insert instead of the loop-by-article insertion, otherwise your database will not eat hang out.

But what if you take it for granted that all the data is stored in an array and AddAll is also going to hang up?

The reason is that the configuration of the Max_allowed_packet variable in MySQL limits the length of the uploaded SQL statement, and it's a bit larger in MySQL configuration.

Max_allowed_packet = 100M

At the same time insert the data also do a lot of the length of the insertion limit, after all, you do not know when the data will become millions other.

The above is the entire content of this article, I hope that the small partners can enjoy.

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.