I need a simple way for multiple running PHP scripts to share data.
Should I create a MySQL DB with a RAM storage engine, and share data via that (can multiple scripts connect to the same DB simultaneously?)
Or would flat files with one piece of data per line be better?


Answers
268 days ago
use mysql for larger sets of data that inter-relate.
if you're using a small list of 50 or so items with no need to grow, a flat file will work fine.