diff --git a/README.rst b/README.rst index 50cfc4d..369357b 100644 --- a/README.rst +++ b/README.rst @@ -29,7 +29,7 @@ You can configure rate limits at different levels such as: **Flask-Limiter** can be `configured `_ to fit your application in many ways, including: - Persistance to various commonly used `storage backends `_ - (such as Redis, Memcached & MongoDB) + (such as Redis, Memcached, MongoDB & Etcd) via `limits `__ - Any rate limiting strategy supported by `limits `__ @@ -71,6 +71,8 @@ Add the rate limiter to your flask app # storage_uri="memcached://localhost:11211,localhost:11212,localhost:11213", # MongoDB # storage_uri="mongodb://localhost:27017", + # Etcd + # storage_uri="etcd://localhost:2379", strategy="fixed-window", # or "moving-window" )