中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java接口限流如何實現

小億
153
2023-10-24 23:22:14
欄目: 編程語言

在Java中實現接口限流可以使用以下幾種方式:

  1. 計數器:維護一個計數器來統計每個接口的請求數量,當請求數量超過設定的閾值時,拒絕后續的請求。這可以使用并發容器如ConcurrentHashMap來實現,其中接口作為key,計數器作為value。
import java.util.concurrent.ConcurrentHashMap;

public class RateLimiter {
    private static ConcurrentHashMap<String, Integer> counters = new ConcurrentHashMap<>();
    private static final int MAX_REQUESTS = 100; // 設定的閾值

    public static boolean allowRequest(String interfaceName) {
        counters.putIfAbsent(interfaceName, 0);
        int count = counters.get(interfaceName);
        if (count >= MAX_REQUESTS) {
            return false;
        }
        counters.put(interfaceName, count + 1);
        return true;
    }

    public static void main(String[] args) {
        String interfaceName = "interface1";
        for (int i = 0; i < 110; i++) {
            if (allowRequest(interfaceName)) {
                System.out.println("Allow request for interface: " + interfaceName);
            } else {
                System.out.println("Reject request for interface: " + interfaceName);
            }
        }
    }
}
  1. 滑動窗口:使用一個固定長度的時間窗口,統計窗口內的請求數量。當請求數量超過設定的閾值時,拒絕后續的請求。這可以使用隊列或數組來保存請求的時間戳,并通過計算窗口內的請求數量來進行限流。
import java.util.ArrayDeque;
import java.util.Queue;

public class RateLimiter {
    private static Queue<Long> timestamps = new ArrayDeque<>();
    private static final int WINDOW_SIZE = 1000; // 窗口大小,單位為毫秒
    private static final int MAX_REQUESTS = 100; // 設定的閾值

    public static boolean allowRequest() {
        long now = System.currentTimeMillis();
        timestamps.offer(now);
        while (!timestamps.isEmpty() && now - timestamps.peek() > WINDOW_SIZE) {
            timestamps.poll();
        }
        return timestamps.size() <= MAX_REQUESTS;
    }

    public static void main(String[] args) {
        for (int i = 0; i < 110; i++) {
            if (allowRequest()) {
                System.out.println("Allow request");
            } else {
                System.out.println("Reject request");
            }
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}
  1. 令牌桶:使用一個固定速率產生令牌,每個請求需要獲取一個令牌才能通過。當令牌數量不足時,拒絕后續的請求。這可以使用ScheduledExecutorService來定時產生令牌,并使用Semaphore來控制令牌的獲取。
import java.util.concurrent.Semaphore;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

public class RateLimiter {
    private static Semaphore tokens = new Semaphore(10); // 初始令牌數量
    private static final int RATE = 1; // 產生令牌的速率,單位為個/秒

    public static boolean allowRequest() {
        return tokens.tryAcquire();
    }

    public static void main(String[] args) {
        ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(1);
        executor.scheduleAtFixedRate(() -> {
            int availableTokens = tokens.availablePermits();
            if (availableTokens < RATE) {
                tokens.release(RATE - availableTokens);
            }
        }, 0, 1, TimeUnit.SECONDS);

        for (int i = 0; i < 20; i++) {
            if (allowRequest()) {
                System.out.println("Allow request");
            } else {
                System.out.println("Reject request");
            }
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

        executor.shutdown();
    }
}

以上是幾種常見的Java接口限流的實現方式,可以根據實際需求選擇適合的方式。

0
阿拉善右旗| 郸城县| 岫岩| 中阳县| 历史| 昭觉县| 永春县| 沁水县| 陇南市| 桦甸市| 辛集市| 浮梁县| 东方市| 大宁县| 南平市| 佛冈县| 临沧市| 毕节市| 名山县| 江达县| 凤冈县| 旬阳县| 汉中市| 碌曲县| 台江县| 广宁县| 沂源县| 霍林郭勒市| 城市| 河西区| 成都市| 永丰县| 溧水县| 三门县| 阳朔县| 冀州市| 永登县| 桐乡市| 金阳县| 类乌齐县| 竹山县|