middleware.rb

Rubyマスター

Explorer

C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby
初級10
中級10
上級10
エキスパート5
マスター5
meta_dsl.rb
fiber_pool.rb
concern_module.rb
refinement.rb
middleware.rb
Rust40
Shell40
Swift40
TypeScript40
middleware.rb
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
class RateLimit
 def initialize(app, max: 100)
   @app, @max = app, max
   @counts = Hash.new(0)
 end
 def call(env)
   ip = env["REMOTE_ADDR"]
   @counts[ip] += 1
   return [429, {}, ["Too Many"]] if @counts[ip] > @max
   @app.call(env)
 end
end
0WPM0%0:000/246(0%)|Ln 1, Col 1
UTF-8Ruby

関連する練習問題