Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PHP 文件,其中包含一个大数组(大约 90KB)。我正在考虑将其移至数据库,但我不确定这是否值得。
一般来说,我可能会遇到 90KB 数组的问题吗?通过将数据移动到数据库,我会获得任何速度提升吗?
数组比访问数据库要快得多。访问数据库是您在 PHP 中可以做的更昂贵的事情之一,而访问数组是最快的事情之一。