Laravel migrations/db:seed super slow

前端 未结 2 1906
既然无缘
既然无缘 2020-12-20 11:11

I recently upgraded from my old Windows computer into a gen. 4 I7 Ubuntu 15.04

Runs like a dream, well...Except that any Laravel artisan command that touch the datab

2条回答
  •  梦毁少年i
    2020-12-20 11:43

    In this case, I think that the buffer pool size increment is required. Set the following:

    [mysqld]
    innodb_io_capacity = 2000
    innodb_read_io_threads = 64
    innodb_thread_concurrency = 0
    innodb_write_io_threads = 64
    

提交回复
热议问题