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