EdwardZZZ / articles

工作点滴记录
2 stars 0 forks source link

rate limit #67

Open EdwardZZZ opened 4 years ago

EdwardZZZ commented 4 years ago
// TODO
ipcount = new Map();

visitTimestampArr.unshift(visitTimestamp);
map.set(ip, visitTimestamp);
if (visitTimestampArr.length > 100) {
    visitTimestampArr.length = 100;
    return 404;
}