About the maximum data size supported by THINKPHP addAll

Source: Internet
Author: User
Tags addall
: This article mainly introduces the maximum data size supported by addAll of THINKPHP. if you are interested in the PHP Tutorial, refer to it. The Model operation in Thinkphp has two methods: add () and addAll.

1 $ User = M ("User"); // instantiate the User object 2 $ data ['name'] = 'thinkphp '; 3 $ data ['email '] = 'thinkphp @ gmail.com'; 4 $ User-> add ($ data ); 5 6 $ dataList [] = array ('name' => 'thinkphp', 'Email '=> 'thinkphp @ gamil.com '); 7 $ dataList [] = array ('name' => 'onethink ', 'Email' => 'onethink @ gamil.com '); 8 $ User-> addAll ($ dataList );

The addAll method can be used to add data in batches, that is, the usage of MySQL:

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 introduces the maximum data size supported by addAll of THINKPHP, including some content, and hope to be helpful to friends who are interested in PHP tutorials.

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.