If I have 2 front end servers accessing a single db server, how will nhibernate operate in this scenerio?
Are there any things to watch out for?
Will running things using stateless sessions help?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you make use of the second level cache, you’ll need to select a provider that allows for distributed usage, such as the Memcached one.
To address the second part of your question, the stateless session only ignores the first level cache, so you won’t need to worry about those.