php - Are apc_store and apc_fetch functions suitable for intensive use? (scenario described)
In ASP.NET I use a static object persistent across sessions (object in server scope) to manage global website information.
I use it mainly to load-manage big lists and avoid slow database queries when sorting and modifying information.
How can this be done with PHP?
Are apc_store and apc_fetch suitable for intensive use in this scenario?