madelson
madelson
Related (but different) ask: https://github.com/madelson/DistributedLock/issues/130
Hi @srogovtsev thanks for your interest in the library. This use-case makes sense and is something I’ve considered in the past. As far as why I haven’t built it (yet):...
@ntark SemaphoreSlim gives you an easy mutex (lock) or of course a semaphore. However, I don’t think it gives us reader-writer lock semantics out of the box. Let me know...
@ntark yeah you can do that but it has a few issues: - no upgradable write functionality - does not support “any number of readers” (and if you make the...
@andysleigh you are correct; there is currently not Azure semaphore implementation. I would definitely love to have one contributed so long as a robust implementation can reasonably be achieved. If...