Analysis on the maximum data size supported by THINKPHP addAll _ PHP-php Tutorial

Source: Internet
Author: User
Tags addall
This article mainly introduces the maximum data size supported by addAll of THINKPHP. For more information, see "add ()" and "addAll ".

The code is as follows:


$ User = M ("User"); // instantiate 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 be used to add data in batches, that is, the usage of MySQL:

The code is as follows:


Insert into tbl_name (a, B, c) VALUES (1, 2, 3), (4, 5, 6), (7, 8, 9 );

If the data volume is large, try to insert data in batches rather than insert data one by one in a loop. Otherwise, your database will become unusable.

However, if you take it for granted that all data is stored in an array and addAll is performed, you will also face the same situation. why?

The reason is that the configuration of the max_allowed_packet variable in mysql limits the length of the SQL statement to be uploaded. in the mysql configuration, set it to a larger value.

Max_allowed_packet = 100 M

At the same time, the length limit of batch insertion is also imposed during data insertion. after all, you do not know when the data will become millions.

The above is all the content of this article. I hope my friends will like it.

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.