From d3eb638931cfbc4aa3a171410c3462a2e31712a1 Mon Sep 17 00:00:00 2001 From: Eric Zhao Date: Mon, 17 Dec 2018 14:51:09 +0800 Subject: [PATCH] Update README.md Signed-off-by: Eric Zhao --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0507900..5f3ba4dd 100755 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ ## What Does It Do? -As distributed systems become increasingly popular, the reliability and stability between services is becoming more important than ever before. Sentinel takes "flow" as breakthrough point, and works on multiple fields including **flow control**, **concurrency**, **circuit breaking** and **load protection**, to protect service reliability. +As distributed systems become increasingly popular, the reliability between services is becoming more important than ever before. +Sentinel takes "flow" as breakthrough point, and works on multiple fields including **flow control**, **circuit breaking** and **system adaptive protection**, to guarantee service reliability. Sentinel has the following features: @@ -83,7 +84,7 @@ So far the code modification is done. We also provide [annotation support module If we want to limit the access times of the resource, we can define rules. The following code defines a rule that limits access to the reource to 20 times per second at the maximum. ```java -List rules = new ArrayList(); +List rules = new ArrayList<>(); FlowRule rule = new FlowRule(); rule.setResource("HelloWorld"); // set limit qps to 20 @@ -138,6 +139,12 @@ Contact us: sentinel@linux.alibaba.com Contributions are always welcomed! Please see [CONTRIBUTING](./CONTRIBUTING.md) for detailed guidelines. +## Credits + +Thanks [Guava](https://github.com/google/guava), which provides some inspiration on rate limiting. + +And thanks for all [contributors](https://github.com/alibaba/Sentinel/graphs/contributors) of Sentinel! + ## Who is using These are only part of the companies using Sentinel, for reference only. If you are using Sentinel, please [add your company here](https://github.com/alibaba/Sentinel/issues/18) to tell us your scenario to make Sentinel better :)