I use INCR and EXPIRE to implement rate limiting(for the example below, only allow 5 requests per mintues):
if EXISTS counter
count = INCR counter
else
EXPIRE counter 60
count = INCR counter
if count > 5
print "Exceeded the limit"
But there is a problem that a people can send 5 requests at the last second at a minute and 5 other requests at the first second at the next minute, in other words, 10 requests in two seconds.
Is there any better way to avoid the problem?
Update: I came up with an idea just now: use a Lists to implement it.
times = LLEN counter
if times < 5
LPUSH counter now()
else
time = LINDEX counter -1
if now() - time < 60
print "Exceeded the limit"
else
LPUSH counter now()
LTRIM counter 5
Is it a good way?