Sticky session vs Coherence*Web in Production environments
In the clustered environment (multiple publish instances) Sticky load balancing/Sticky session has to maintained due to the fact that user requests across a set of servers should be in such a way that requests from a given user are consistently sent to the same server.
Now recently I have come across Coherence*Web in oracle docs which maintains the one single location for session variable storage so the clustered environments (i.e. different JVM's) can access the session objects. If this is achieved there is no need for sticky sessions where we can achieve optimized load balancing. This approach provides looser coupling between Web applications, but suffers from a performance impact because objects must be serialized-deserialized for transfer between cluster members.
My question are
1. Is there any Coherence*Web implementation OOTB in AEM.
2.Which approach is better either Sticky session or Coherence*Web in AEM perspective.(In most of the production environments I have seen using sticky sessions)