Loading

随笔分类 -  知识库

摘要:概念解释 redis 缓存穿透 key对应的数据在数据源并不存在,每次针对此key的请求从缓存获取不到,请求都会到数据源,从而可能压垮数据源。比如用一个不存在的用户id获取用户信息,不论缓存还是数据库都没有,若黑客利用此漏洞进行攻击可能压垮数据库。 redis 缓存击穿 key对应的数据存在,但在r 阅读全文
posted @ 2019-11-25 14:48 寒烟濡雨 阅读(199) 评论(0) 推荐(0)
摘要:拉取代码 git命令行输入,下同 # 拉取整个仓库 git clone http://XXX/index/helloword.git # 拉取远程 dev 分支 git clone -b dev http://XXX/index/helloword.git # helloword cd YourFi 阅读全文
posted @ 2019-10-16 14:05 寒烟濡雨 阅读(460) 评论(0) 推荐(0)

Loading