Giter VIP home page Giter VIP logo

Comments (1)

TheCloudlessSky avatar TheCloudlessSky commented on August 18, 2024

The LockTimeout is how long NHibernate should hold onto the lock. By default, it's a large number of seconds to account for any problems. It's the upper bound of your transaction duration. It's definitely safe to make it 1-2 seconds. However, you need to ensure everything else occurs within the lock timeout as well (e.g. what's your DB timeout?). A possible worst case scenario is:

  1. A lock is taken.
  2. Some sort stall during your request causing the lock to timeout (e.g. DB connection, network latency etc)
  3. A concurrent transaction takes a lock (because the other lock timed out).
  4. The original transaction tries to free the lock, but it doesn't own it anymore (thus triggering the RedisCacheProviderOptions.OnUnlockFailed... which may throw an exception depending on how you have it configured).

The default is very high to simply account for these scenarios, but it could be any value depending on your application's requirements.

from nhibernate.caches.redis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.