I need to store some 6-8GB of static data into shared memory as an ARRAY OBJECT. Data is fetched from the database. I want to fork() and allow children to access and SEARCH for elements in the array based on the index.
As far as I'm concerned I can only store "strings" using shmop(). But I want to store an array that PHP recognizes as an array object.
Any suggestions?