gpt4 book ai didi

ruby-on-rails - rails Controller 的速率限制

转载 作者:行者123 更新时间:2023-12-04 10:10:26 24 4
gpt4 key购买 nike

我正在为我的 rails 3 应用程序搜索限速引擎。我找到了一些,但这不是我需要的。我找到了rack-throttle gem和curbit gem。似乎rack-throttle 适用于对rails 应用程序的每个请求,但我只需要将请求限制为一个操作。 Curbit 上次更新是在两年前。谁能告诉我我可以使用的任何其他限速引擎?请注意,它应该与缓存一起使用。

最佳答案

好吧,最后机架 throttle 是一个很好的解决方案。

您可以通过以下方式进行。您需要定义自定义限制器。它可以基于以下任一限制器

Rack::Throttle::Limiter
Rack::Throttle::Interval
Rack::Throttle::Hourly
Rack::Throttle::Daily

您需要做的一切都是从上述类之一派生来定义自定义逻辑。例如:
class CustomLimiter < Rack::Throttle::Interval
def allowed?(request)
#custom logic here
end
end

你应该把这个文件放在 RAILS_ROOT/lib小路。然后在 application.rb文件中,您应该指定要用作限制器的类。例如,如果您只想将限制器应用于一个操作,您可以通过以下方式进行:
#lib/custom_limiter.rb
class CustomLimiter < Rack::Throttle::Interval
def allowed?(request)
path_info = Rails.application.routes.recognize_path request.url rescue {}
if path_info[:controller] == "application" and path_info[:action] == "check_answer"
super
else
true
end
end
end

#config/application.rb
class Application < Rails::Application
...
#Set up rate limiting
config.require "custom_limiter"
config.middleware.use CustomLimiter, :min => 0.2
...
end

您可能需要带 this考虑到

希望这将是有用的

更新:

您可能想查看另一个解决方案: rack-attack

关于ruby-on-rails - rails Controller 的速率限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9581171/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com