From 539068cf7d9927258b4a6dfa24ace0bcdd888968 Mon Sep 17 00:00:00 2001
From: Covertness <wuyingfengsui@gmail.com>
Date: Sat, 25 Jul 2015 17:00:34 +0800
Subject: [PATCH] Update README.md

---
 README.md | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index ff2a52c..fd74e7f 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 [![Coverage Status](https://coveralls.io/repos/Covertness/coap-rs/badge.svg?branch=master&service=github)](https://coveralls.io/github/Covertness/coap-rs?branch=master)
 [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
 
-A [Constrained Application Protocol(CoAP)](https://tools.ietf.org/html/rfc7252) library implemented in Rust.
+A fast and stable [Constrained Application Protocol(CoAP)](https://tools.ietf.org/html/rfc7252) library implemented in Rust.
 
 [Documentation](http://covertness.github.io/coap-rs/coap/index.html)
 
@@ -78,4 +78,13 @@ fn main() {
 	let response = client.receive().unwrap();
 	println!("Server reply: {}", String::from_utf8(response.payload).unwrap());
 }
-```
\ No newline at end of file
+```
+
+## Benchmark
+### Using one thread
+![image](benches/one_thread_summary.png)
+
+### Using eight thread
+![image](benches/eight_thread_summary.png)
+
+Tests were performed using [basho_bench](https://github.com/basho/basho_bench).
-- 
GitLab