(b *testing.B)
| 499 | } |
| 500 | |
| 501 | func BenchmarkRateLimiterMemoryStore_100000(b *testing.B) { |
| 502 | var store = NewRateLimiterMemoryStoreWithConfig(RateLimiterMemoryStoreConfig{Rate: 100, Burst: 200, ExpiresIn: testExpiresIn}) |
| 503 | benchmarkStore(store, 10, 100000, b) |
| 504 | } |
| 505 | |
| 506 | func BenchmarkRateLimiterMemoryStore_conc100_10000(b *testing.B) { |
| 507 | var store = NewRateLimiterMemoryStoreWithConfig(RateLimiterMemoryStoreConfig{Rate: 100, Burst: 200, ExpiresIn: testExpiresIn}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…