Hi, if I understand correctly, you want to disable page serialization on session replication, as the filesystem where the page store stores temporary pages is accessible from each node in cluster?
There is a way to achieve it, just create your own page store extending from DiskPageStore and make it implement the SecondLevelCacheSessionStore.IClusteredPageStore interface. Just implementing this interface will cause that the last accessed page will not be replicated across cluster. -Matej On 9/28/07, mchack <[EMAIL PROTECTED]> wrote: > > I am deploying my application in a clustered environment. Eliminating session > sticky load balancing would be an advantage for me. Session data is already > replicated in a clustered environment. Are the mechanics in place to share > the Page Cache with other machines if I use a clustered file system that > allows concurrent access in this way providing non sticky LB across the > cluster? > > -Mike > -- > View this message in context: > http://www.nabble.com/Clustering-Question---Can-the-2nd-Level-Page-Cache-be-shared-in-a-clustered-filesystem-configuration--tf4531607.html#a12932067 > Sent from the Wicket - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
