deivydas321

Results 7 comments of deivydas321

Until there are no official docs, can someone share a working example of Client rate limiting using Redis? ``` services.Configure(Configuration.GetSection("IpRateLimiting")); services.Configure(Configuration.GetSection("IpRateLimitPolicies")); //load general configuration from appsettings.json services.Configure(Configuration.GetSection("ClientRateLimiting")); services.Configure(Configuration.GetSection("ClientRateLimitPolicies")); services.AddDistributedRateLimiting(); services.AddDistributedRateLimiting();...

Is there any workable example with version 4? Without the proper docs all the release becomes useless because running it together with Redis is quite complicated.

@cristipufu I am really curious why in Demo app `services.AddMemoryCache();` is not necessary? In my aspnet core 5 project I had to add it to make it work with simple...

I can add that the same error is with dictionaries.

We are experiencing these timeouts while the server load is < 10%. > Timeout awaiting response (outbound=0KiB, inbound=4KiB, 844ms elapsed, timeout is 500ms), command=EVAL, next: EVAL, inst: 0, qu: 0,...

At the moment it doesn't exist. But it can be solved with this method. ```cs private static SKBitmap AutoOrient(SKBitmap bitmap, SKEncodedOrigin origin) { SKBitmap rotated; switch (origin) { case SKEncodedOrigin.BottomRight:...

@Gillibald, the problem is that when the image is taken from a mobile phone it is always saved in the orientation the device camera is built into the device(In most...