Is is possible to create an array that would be available to anybody that uses my site?
Basically, I want to create an array and let it live perpetually in memory. Now, each time somebody else visits the website, I want his processes to have access to the global array, and be able to make modifications to it.
Currently I do it from database tables, but having stuff in ram would speed things up.
Is this even possible?