Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Kotlin/http4k 制作一个 REST API,其中一个规范是它应该实现节流。
限制和负载平衡之间有什么区别吗?
节流是一个调节处理速率的过程。
负载平衡是将处理分配到可用资源上的过程。
使用throttling,您可以调整生产速率以匹配消费者的能力,因此不会要求它处理超出其处理能力的范围。
使用负载平衡,您可以在多个消费者之间分配处理,因此它们都不会超载。
您可以将这两种技术结合在一起。