AccessViolator

Results 8 comments of AccessViolator

@blueww, if you search Azurite's source code by "is not on the same Azurite instance as target account" you'll see where the problem comes from - it's just not implemented.

I personally am amazed to see that Latency Test table is not resorted by Average Latency on every refresh. And find this one much more useful for that reason [https://azurespeedtest.azurewebsites.net/](https://azurespeedtest.azurewebsites.net/)

It's V6 now and it's still not implemented. The feature is needed. I hope the "genius" who decided to remove it in V5 isn't with the company anymore...

I'm actually VERY surprised to see that there's no any async support in the library. While I agree that async has little sense for inproc caches, it may be useful...

Thanks for clarification. For now I think I'll use extension methods similar to suggested in another thread, e.g. ``` public static async Task GetOrAddSlidingAsync( this ICacheManager self, string key, short...

Thanks. Re retrying - I think in most cases for factories like db retrieval it's pretty safe to assume that if another thread added the key between null check and...