excess_flow
High precision redis based rate limiter
File Explorer
- config.yml
- console
- setup
- configuration.rb
- configuration_error.rb
- constants.rb
- failed_execution.rb
- fixed_window_strategy.rb
- global_mutex.rb
- rate_limited_execution_result.rb
- redis_connection.rb
- sliding_window_strategy.rb
- strategy.rb
- throttle_configuration.rb
- throttled_executor.rb
- excess_flow.rb
- fixed_window_strategy_spec.rb
- global_mutex_spec.rb
- rate_limited_execution_result_spec.rb
- sliding_window_strategy_spec.rb
- strategy_spec.rb
- throttle_configuration_spec.rb
- throttled_executor_spec.rb
- window_strategy_spec.rb
- excess_flow_spec.rb
- spec_helper.rb
- .gitignore
- .rspec
- .rubocop.yml
- .travis.yml
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- excess_flow.gemspec
- Gemfile
- Gemfile.lock
- LICENSE.txt
- Rakefile
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bundle
View Details ▼
bundle
Dependency manager for the Ruby programming language.
bundle install
Install all gems defined in the `Gemfile` expected in the working directory:
bundle exec {{command}} {{arguments}}
Execute a command in the context of the current bundle:
bundle update
Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:
gem
View Details ▼
gem
A package manager for the Ruby programming language.
gem search {{regex}} {{[-a|--all]}}
Search for remote gem(s) and show all available versions:
gem install {{gem_name}}
Install the latest version of a gem:
gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}
Install a specific version of a gem:
rspec
View Details ▼
rspec
Behavior-driven development testing framework written in Ruby to test Ruby code.
rspec --init
Initialize an `.rspec` configuration and a spec helper file:
rspec
Run all tests:
rspec {{path/to/directory}}
Run a specific directory of tests:
