You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have very simple example of in memory sliding window. Limit is one call for a give key and duration is 10 seconds. It starts of with limiting one request but after 10th second two calls are being allowed.
import java.time.Duration;
import java.time.temporal.ChronoUnit;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.Timer;
import java.util.TimerTask;
import es.moki.ratelimitj.core.limiter.request.RequestLimitRule;
import es.moki.ratelimitj.core.limiter.request.RequestRateLimiter;
import es.moki.ratelimitj.inmemory.request.InMemorySlidingWindowRequestRateLimiter;
public class RateLimitExample {
public static void main(final String... strings) {
final Duration precisionDuration = Duration.of(1, ChronoUnit.SECONDS);
// 1 request per 10 seconds if address is same
final Duration addressDuration = Duration.of(10, ChronoUnit.SECONDS);
final RequestLimitRule addressRule = RequestLimitRule.of(addressDuration, 1).withPrecision(precisionDuration);
final RequestRateLimiter addressRuleRateLimiter = new InMemorySlidingWindowRequestRateLimiter(addressRule);
while(true) {
final UserObject user = UserObject.builder().age(11).name("ABC").address("NewYork").build();
processStudent(user, addressRuleRateLimiter);
}
}
private static void processStudent(final UserObject user, final RequestRateLimiter addressRuleRateLimiter) {
if (!addressRuleRateLimiter.overLimitWhenIncremented(user.getAddress())) {
user.callStudent();
}
}
}
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString
@EqualsAndHashCode
@Builder
public class UserObject {
String name;
int age;
String address;
boolean isProcessed;
static DateFormat dateFormat = new SimpleDateFormat("dd MMM yyyy HH:mm:ss");
public void callStudent() {
Date currentDate = new Date(System.currentTimeMillis());
System.out.println(dateFormat.format(currentDate)+" "+this.toString());
}
}
Output
10 Mar 2020 14:26:17 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:27 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:27 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:37 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:37 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:47 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:47 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:57 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:26:57 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:27:07 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
10 Mar 2020 14:27:07 UserObject(name=ABC, age=11, address=NewYork, isProcessed=false)
As you can see first call for key NewYork was allowed only once for 10 seconds. But after that it allowed two calls.
Also how actively this library is maintained?
The text was updated successfully, but these errors were encountered:
I have very simple example of in memory sliding window. Limit is one call for a give key and duration is 10 seconds. It starts of with limiting one request but after 10th second two calls are being allowed.
Output
As you can see first call for key NewYork was allowed only once for 10 seconds. But after that it allowed two calls.
Also how actively this library is maintained?
The text was updated successfully, but these errors were encountered: