zoukankan      html  css  js  c++  java
  • tp5插入百万条数据处理优化

    <?php
    namespace appindexcontroller;
    use thinkController;
    use thinkDb;
    
    class Charu extends Controller
    {
        public function index(){
            date_default_timezone_set("PRC");
            // 此处修改php.ini的内存,不然无法执行插入,因为数据量太大
            ini_set('memory_limit','1024M');
            echo date('Y-m-d H:i:s').'<br>';
            $start = time();
            $data = array();
            for($i=0;$i<1000000;$i++){
                array_push($data,['name'=>'测试','age'=>10]);
            }
            print_r(db('charu')->insertAll($data));
            $end = time();
            echo '<br>'.date('Y-m-d H:i:s').'<br>';
            $a = $end-$start;
            print_r('耗时分秒  '.date('i:s',$a));
        }
    }

    遇到下面的错误就表示你php.ini文件设置的内存值不够放

    Fatal error: Allowed memory size of 157286400 bytes exhausted (tried to allocate 32 bytes) in 

    第一种解决方案是:在PHP文件中加入ini_set(”memory_limit”,”80M”);当然80M可以根据自己的情况改动,也不要太大哦,否则系统其它资源会遇到问题哦,其中-1为不设限。

    我用的是第一种方法

    第二种解决方案是:修改 php.ini配置文件,在php.ini中找到

    memory_limit = 16M,将前面的分号去掉,改动值的大小,将memory_limit由8M改成16M(或更大),重启apache服务即可。

  • 相关阅读:
    网络嗅探器
    struct udphdr
    struct tcphdr
    struct iphdr
    socket函数
    SQL SERVER-解析Extendevent文件数据
    SQL SERVER-日期按时区转换
    SQL SERVER-CROSS APPLY
    WinServer-文件共享端口
    SQL SERVER-修改实例的排序规则
  • 原文地址:https://www.cnblogs.com/lcxin/p/11533686.html
Copyright © 2011-2022 走看看