BrakePedal 1.0.1
See the version list below for details.
Install-Package BrakePedal -Version 1.0.1
dotnet add package BrakePedal --version 1.0.1
<PackageReference Include="BrakePedal" Version="1.0.1" />
paket add BrakePedal --version 1.0.1
#r "nuget: BrakePedal, 1.0.1"
// Install BrakePedal as a Cake Addin
#addin nuget:?package=BrakePedal&version=1.0.1
// Install BrakePedal as a Cake Tool
#tool nuget:?package=BrakePedal&version=1.0.1
Brake Pedal is a general purpose throttling library. The library provides the following features:
- Time based throttling: limit X number of requests over Y time period.
- Locking: block requests after X attempts over Y time period for Z time period.
- Decoupled storage: you can use the bundled repositories (in memory) or roll your own.
The BrakePedal.Http package provides code to use the BrakePedal library in a Web API application as an attribute, handler, or filter.
The BrakePedal.Redis package contains an implementation of a Redis BrakePedal repository which uses StackExchange.Redis (https://github.com/StackExchange/StackExchange.Redis) for use with the BrakePedal library.
Product | Versions |
---|---|
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
This package has no dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on BrakePedal:
Package | Downloads |
---|---|
BrakePedal.Redis
The BrakePedal.Redis package contains an implementation of a Redis BrakePedal repository which uses StackExchange.Redis (https://github.com/StackExchange/StackExchange.Redis) for use with the BrakePedal library. |
|
BrakePedal.Http
The BrakePedal.Http package provides code to use the BrakePedal library in a Web API application as an attribute, handler, or filter. |
|
BrakePedal.Memcached
The BrakePedal.Memcached package contains an implmentation of a BreakPedal repository which uses Enyim.Memcached (https://github.com/enyim/EnyimMemcached) to back the repository. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Fix a few bugs in MemoryThrottleRepository.