authManager application component loaded on each page request

I am attempting to set up an authManager for REST-based RBAC.

I discovered that my collection of items, children and assignments are reset on every page load.

I had assumed the authManager was a Singleton. Looking at my application.log, the trace indicates the authManager is reloaded on each page load.

That does not seem right to me. Am I supposed to reload all of my items and assignments on each page load?

It’s PHP, not Java :) Everything has to be reloaded and rebuilt on every single request. This is how “shared nothing architecture” of PHP works.

Thanks for the reply. I believe my solution will be memcached.