1.

What Is Session Replication?

Answer»
  • Session replication is used in application server clusters to achieve session failover. 
  • A user session is replicated to other MACHINES of a cluster, every time the session data changes.
  • If a MACHINE fails, the LOAD BALANCER can simply send incoming REQUESTS to another server in the cluster.
  • The user can be sent to any server in the cluster since all machines in a cluster have copy of the session.
  • Session replication may allow your application to have session failover but it may require you to have extra cost in terms of memory and network bandwidth.



Discussion

No Comment Found