Re: state management in handlers

2013-03-07 Thread Issac Goldstand

On 07/03/2013 02:59, Nce Rt wrote:

Is there a sample code to store and retrieve the state in a custom handler's 
local session?



Look at r-notes


Re: state management in handlers

2013-03-06 Thread Joe Lewis
Probably not, because you will have to cater to the MPM - e.g. use shared
memory if a subsequent request comes into a different process.

I'd suggest using shared memory (there are apr routines to do that), and
that should guarantee that state will be shared between different threads
or processes.

Joe


On Wed, Mar 6, 2013 at 5:59 PM, Nce Rt nce...@yahoo.com wrote:

 Is there a sample code to store and retrieve the state in a custom
 handler's local session?