The answer to my question may be out there but I am unable t ascertain the answer due to perhaps the ways it is asked or answered, so I will try myself and I hope a few of you could comment.
I would like to cache my reference(non changing) data that exists in my mysql database into read only memory on the web server (so others cannot change it) and access this data across any session any page and any user, so as the server starts up, it runs a mysql script from ? a php script ? or what ever it takes for my php pages to be able to access. I do not want to have a web page that my users can access to have to run the mysql queury to find the value for a variable that is needed in the page. I just want to run the sql 1 time by the system and have all my users be able to access it. There has to be a definitive(best practice) way to accomplish this and I hope someone here can provide some guidance. I understand that a superglobal may accomplish this, but can I define a superglobal array to use. Simply wanting to reduce the number of db reads for data that does not change. Thanks alot for any guidance you can provide