From 13a71464dd3c5de79791d6d5e8df3f82c18d8889 Mon Sep 17 00:00:00 2001 From: Daniel Qian Date: Tue, 26 Aug 2014 17:00:54 +0800 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cf22a289..94722f89 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,8 @@ router.route(message); ### 构造WxService -``WxService``依赖于``WxConfigStorage``,``WxConfigStorage``是微信客户端配置所存储的地方,本工具提供了默认的``WxInMemoryConfigStorage``,这是一个存储在内存中的实现,生产环境中需要开发人员提供自己的实现。 +``WxService``依赖于``WxConfigStorage``,``WxConfigStorage``是微信客户端配置所存储的地方,本工具提供了默认基于内存的实现:``WxInMemoryConfigStorage``。您可能在实际使用时需要提供自己的实现,比如在集群环境下存储到数据库中。 + ```java WxConfigStorage config = new WxInMemoryConfigStorage();