Is it bad to include a lot of files in PHP like it is for file based Sessions?

后端 未结 7 946
遇见更好的自我
遇见更好的自我 2021-01-04 14:25

After reading about how file based PHP sessions are not the greatest for performance, it has me thinking. Does this mean a PHP script including a lot of files is bad as wel

相关标签:
7条回答
  • 2021-01-04 15:12

    Including a lot of small files is less performant than including a big file, that's why cache engines like APC exist.

    0 讨论(0)
提交回复
热议问题