Analysis of thinkphp AddAll supported maximum data volume _php instance

Source: Internet
Author: User
Tags addall bulk insert
The model operation in Thinkphp has two methods: Add () and AddAll

Copy the Code code as follows:
$User = M ("User"); Instantiating a 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 be used to add data in bulk, which is the use of MySQL:

Copy the Code code as follows:
INSERT into Tbl_name (a,b,c) VALUES (All-in-all), (4,5,6), (7,8,9);

Data volume in many cases, try to choose BULK Insert instead of looping through the INSERT, otherwise your database will not eat hang off.

But if you take it for granted that all of the data is stored in an array and AddAll will also face the situation of hanging out, this is why?

The reason is that the configuration of the Max_allowed_packet variable in MySQL limits the length of the upload SQL statement, and in the MySQL configuration, you can configure him a little larger.

Max_allowed_packet = 100M

At the same time when inserting data is also good for the length of the bulk insertion limit, after all, you do not know when the data will become millions other.

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

  • 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.