Jump to content

array or database table


bigtimslim

Recommended Posts

I've made a site with a search feature that gathers and processes information from several feeds. The data from a search ends up being 6 columns by often hundreds of rows. This data only really needs to be stored for the session. I currently have it being stored in a multidimensional array. I will need to pass the array through different pages through sessions.

 

My question is, would it be better to somehow use a temporary mysql table for this information?

Link to comment
https://forums.phpfreaks.com/topic/107024-array-or-database-table/
Share on other sites

You could always try sqlite... you can make a temporary table in memory and it's less unwieldy than a huge array.

 

If you have memory problems, a mysql database could work, but the problem is that you'd need a seperate table for each online user, and it would probably slow down appreciably.

 

I'd go with the sqlite route.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.