what is the session persistence in websphere application server
Session Persistence:- In WebSphere application server session can be persistence in two ways 1.Memory to Memory session persistence:- session will be store in the application server heap memory. in case crash of any server the all those session will be shift in another server and request will be route by another server. Advantage:- its provide the fast performance Disadvantage:- session can be lost in case of server crash also consume more memory 2.Database:- In database type session persistence all the session will be store in the database Advantage :- session information can not be lost. Disadvantage:- performance can be little slow than memory to memory.