From 284803451c37ce0c8dfe652990a1c0476dba0c69 Mon Sep 17 00:00:00 2001 From: yanglbme Date: Mon, 1 Jul 2019 11:27:13 +0800 Subject: [PATCH] docs: update doc description * close #75 * close #76 --- .../redis-caching-avalanche-and-caching-penetration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/high-concurrency/redis-caching-avalanche-and-caching-penetration.md b/docs/high-concurrency/redis-caching-avalanche-and-caching-penetration.md index 9842eab..4ac6888 100644 --- a/docs/high-concurrency/redis-caching-avalanche-and-caching-penetration.md +++ b/docs/high-concurrency/redis-caching-avalanche-and-caching-penetration.md @@ -35,7 +35,7 @@ 黑客发出的那 4000 个攻击,缓存中查不到,每次你去数据库里查,也查不到。 -举个栗子。数据库 id 是从 1 开始的,结果黑客发过来的请求 id 全部都是负数。这样的话,缓存中不会有,请求每次都“视缓存于无物”,直接查询数据库。这种恶意攻击场景的缓存穿透就会直接把数据库给打死。 +举个栗子。数据库 id 是从 1 开始的,结果黑客发过来的请求 id 全部都是负数。这样的话,缓存中不会有,请求每次都“**视缓存于无物**”,直接查询数据库。这种恶意攻击场景的缓存穿透就会直接把数据库给打死。 ![redis-caching-penetration](/images/redis-caching-penetration.png) -- GitLab