Is RTD Stateless or Stateful?
- by michel.adar@oracle.com
Yes.
A stateless service is one where each request is an independent transaction that can be processed by any of the servers in a cluster. A stateful service is one where state is kept in a server's memory from transaction to transaction, thus necessitating the proper routing of requests to the right server. The main advantage of…