I have a PHP file that contains a large array (about 90KB). I’m considering moving it to the database however I’m not sure it’s worth the trouble.
In general, am I likely to run into problems with a 90KB array? Will I get any speed improvement by moving the data to a database?
Arrays are much faster then accessing a database. Accessing a database is one of the more expensive things you can do in PHP while accessing an array is one of the fastest.