Re: [go-nuts] Re: Maximum number of requests per HTTP connection?

2017-07-06 Thread Kevin Conway
> You can have a filter which increments the counter and records for each request from the user and kicks him/her when the limit is crossed. We're actually interested in this problem from the other direction. When making an outbound HTTP request we want to limit the number of times (or the

[go-nuts] Re: Maximum number of requests per HTTP connection?

2017-07-06 Thread uwinsoiwin
Hi there, You can have a filter which increments the counter and records for each request from the user and kicks him/her when the limit is crossed. I do a similar type of check where in I check whether the user has a authenticated session at the point of time of for each request. I did this