Skip to content

Commit

Permalink
修改格式
Browse files Browse the repository at this point in the history
  • Loading branch information
qiujiayu committed Feb 19, 2016
1 parent cd9caa0 commit 5b924bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,11 +434,12 @@ web.xml配置:

## 更新日志


* ####3.1 优化“拿来主义”机制

“拿来主义”机制指的是,当有多个请求去获取同一个数据时,我们先让其中一个请求先去DAO中获取数据,并放到缓存中,其它请求则等它完成后,直接去缓存中获取数据,通过这种方式减轻DAO中的并发。
“拿来主义”机制指的是,当有多个请求去获取同一个数据时,我们先让其中一个请求先去DAO中获取数据,并放到缓存中,其它请求则等它完成后,直接去缓存中获取数据,通过这种方式减轻DAO中的并发。

但经测试发现,刚往Reids中放的数据,立即去取是获取不到数据的(无法命中),测试代码已经放到[cache-example](https://github.com/qiujiayu/cache-example) 中。优化后的方案是,不从远程服务器获取,而是从本地缓存中获取第一个请求返回的数据。减少并发的同时,还能减轻网络压力。
但经测试发现,刚往Reids中放的数据,立即去取是获取不到数据的(无法命中),测试代码已经放到[cache-example](https://github.com/qiujiayu/cache-example) 中。优化后的方案是,不从远程服务器获取,而是从本地缓存中获取第一个请求返回的数据。减少并发的同时,还能减轻网络压力。

* ####3.0 此版本做了大调整,有些功能已经不兼容老版本

Expand Down

0 comments on commit 5b924bb

Please sign in to comment.