1
1個使用者發請求到tomcat,tomcat部署web應用,web應用去查詢mysql,查詢之後發現資料公用,就將資料放入快取服務之中,剩餘的人的請求進來tomcat後,發現快取服務中有自己想要的資料,可以直接去取就行了,取出來之後,可以將值返回頁面端,這樣,就減少了對資料庫的io處理,這樣比查詢資料庫的效能快很多倍,屬於效能優化
快取服務中有 redis mc mongodb hive
使用快取的優勢:
通過快取能減少對資料庫的訪問、提高訪問速度
2 redis 官網
Spring Boot系列筆記 整合Redis
autowired stringredistemplate stringredistemplate autowired redistemplate redistemplate redistemplate類中提供了redis常見的五種資料型別 stringredistemplate.opsforval...
springboot2 x基礎 整合redis
在springboot中一般使用redistemplate提供的方法來操作redis。那麼使用springboot整合redis 需要那些步驟呢。環境安裝 任選 centos7 搭建redis 5單機服務 centos7 搭建 redis 5 cluster 集群服務 在專案中新增 spring b...
Redis benchmark測試Redis效能
redis benchmark是官方自帶的redis效能測試工具,可以有效的測試redis服務的效能。使用說明如下 usage redis benchmark h p c n k h server hostname default 127.0.0.1 p server port default 63...