I am wondering if there is any distributed alternative to ASP.Net public service.
A session can be stored in InProc, StateService or SQL. You can also create your own storage providers. For load balancing (without any sticky IP) only SQL / Custom will work.
Are there any alternative ASP.Net public services? I think that each server can synchronize with others.
Edit: In response to the answers: I'm looking for a Session () repository. Distributed cache is not a problem, Velocity will do just fine with distributed caching. :)
Edit2: In response to Oded: the status server has a problem with a single point of failure. The SQL server may not be available directly due to the selected model (i.e., the Three-layer model), access to it is possible only through the middle level.
source
share