Jacob Stein

Results 5 comments of Jacob Stein

Check out [this PR](https://github.com/stefanprodan/AspNetCoreRateLimit/pull/316) which modifies the existing `RedisProcessingStrategy` to accept configuration options. Maybe I should make this not only possible with Redis but all cache types?

Create your own rate limit middleware which inherits from one of the [existing middleware implementations](https://github.com/stefanprodan/AspNetCoreRateLimit/tree/master/src/AspNetCoreRateLimit/Middleware), and override `ReturnQuotaExceededResponse`. Eg. ```cs public override Task ReturnQuotaExceededResponse(HttpContext context, RateLimitRule rule, string retryAfter) {...

> Actually, wouldn't it be enough to just remove the `_` when we call the policy store I suppose, however I find it unreasonable to alter its current behavior as...

I spent hours going through and fixing all these issues to try and run this on my M1 Mac. Finally found your PR, it fixes everything I missed. Thank you!...

> I got this working with Nuxtjs and Typescript > > plugins/vue-confetti.client.ts > > ```ts > import Vue from 'vue' > import { Plugin } from '@nuxt/types' > import VueConfetti...