In ASP.NET I can store both session and application state. Is the same true of PHP? I can’t seem to find information on application state.
If not, what are best practices for shared state information? I need to build a somewhat complex data structure that all clients can utilize. It takes a while to build but is never edited after it’s built.
thanks,
Michael
PHP doesn’t have any equivalent to Application State. Your best option would be to maintain your data structure within APC or memcache (or WinCache on a Windows server).