Coder Social home page Coder Social logo

Comments (2)

madelson avatar madelson commented on June 15, 2024

Hi @stephenpatten thanks for posting. I'm not sure I completely follow what you are trying to achieve and where you are getting stuck. Is the code snippet the code being tested or the code in the test itself? If you can refine down to a small complete example that would help me a lot. Some other thoughts:

Wondering how you might be able to use say, VS 2017 with xUnit to create a multiple consumers who will all try and grab a sqlDistributed lock?

Connection-string based locks are not re-entrant, so if your goal is to test by simulating a situation with multiple contenders for the lock it should be really simple. One option would be to launch multiple threads with Task.Run() or Parallel.ForEach and have them all try to use it. If you want something even more direct, you can use a single thread:

var @lock = new SqlDistributedLock(...);
using (var handle = @lock.Acquire())
{
    // code that runs in here that tries to take the lock will block
}

I'm not opposed to running up LocalDB/SqlExpress...

I do all my tests against SqlExpress, which is very easy. Really any database should work, although if you use a shared database then you can hit issues if multiple people are running the same test at the same time (this can be worked around by randomizing the lock name used by the test).

/*var handle = sqlLock.TryAcquire(timeout); // Does not enforce timeout */

I was surprised to see this. The intended behavior is that Acquire(timeout) throws after the timeout expires and TryAcquire(timeout) returns null after the timeout expires. Thus Acquire() with no timeout is like having an infinite timeout while TryAcquire() with no timeout is like having a timeout of zero. What behavior were you seeing?

from distributedlock.

stephenpatten avatar stephenpatten commented on June 15, 2024

Yeah, I owe you a better question, closing this for the time being.

from distributedlock.

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.