我想实现对每个域 发起http请求的时候限制请求频率。对同一个域只能以100ms间隔发起请求 如果是不同的域就不需要这种限制,这个有什么方法实现?或者有现成的框架可参考么? ps:http client端
2 回复
参考restify
的throttle middleware
https://github.com/mcavage/node-restify/blob/master/lib/plugins/throttle.js
我想实现对每个域 发起http请求的时候限制请求频率。对同一个域只能以100ms间隔发起请求 如果是不同的域就不需要这种限制,这个有什么方法实现?或者有现成的框架可参考么? ps:http client端
参考restify
的throttle middleware
https://github.com/mcavage/node-restify/blob/master/lib/plugins/throttle.js