摘要: 本文介紹了在使用阿里雲Redis的開發規範,從鍵值設計、命令使用、客戶端使用、相關工具等方面進行說明,經過本文的介紹能夠減小使用Redis過程帶來的問題。git
以業務名(或數據庫名)爲前綴(防止key衝突),用冒號分隔,好比業務名:表名:idgithub
ugc:video:1複製代碼
保證語義的前提下,控制key的長度,當key較多時,內存佔用也不容忽視,例如:redis
user:{uid}:friends:messages:{mid}簡化爲u:{uid}:fr:m:{mid}。複製代碼
反例:包含空格、換行、單雙引號以及其餘轉義字符算法
string類型控制在10KB之內,hash、list、set、zset元素個數不要超過5000。數據庫
反例:一個包含200萬個元素的list。數組
非字符串的bigkey,不要使用del刪除,使用hscan、sscan、zscan方式漸進式刪除,同時要注意防止bigkey過時時間自動刪除問題(例如一個200萬的zset設置1小時過時,會觸發del操做,形成阻塞,並且該操做不會不出如今慢查詢中(latency可查)),查找方法和刪除方法markdown
例如:實體類型(要合理控制和使用數據結構內存編碼優化配置,例如ziplist,但也要注意節省內存和性能之間的平衡)數據結構
反例:併發
set user:1:name tom
set user:1:age 19
set user:1:favor football複製代碼
正例:dom
hmset user:1 name tom age 19 favor football複製代碼
建議使用expire設置過時時間(條件容許能夠打散過時時間,防止集中過時),不過時的數據重點關注idletime。
例如hgetall、lrange、smembers、zrange、sinter等並不是不能使用,可是須要明確N的值。有遍歷的需求可使用hscan、sscan、zscan代替。
禁止線上使用keys、flushall、flushdb等,經過redis的rename機制禁掉命令,或者使用scan的方式漸進式處理。
redis的多數據庫較弱,使用數字進行區分,不少客戶端支持較差,同時多業務用多數據庫實際仍是單線程處理,會有干擾。
原生命令:例如mget、mset。
非原生命令:可使用pipeline提升效率。複製代碼
但要注意控制一次批量操做的元素個數(例如500之內,實際也和元素字節數有關)。
注意二者不一樣:
1\. 原生是原子操做,pipeline是非原子操做。
2\. pipeline能夠打包不一樣的命令,原生作不到
3\. pipeline須要客戶端和服務端同時支持。複製代碼
Redis的事務功能較弱(不支持回滾),並且集羣版本(自研和官方)要求一次事務操做的key必須在一個slot上(可使用hashtag功能解決)
避免多個應用使用一個Redis實例
正例:不相干的業務拆分,公共數據作服務化。
使用帶有鏈接池的數據庫,能夠有效控制鏈接,同時提升效率,標準使用方式:
執行命令以下:
Jedis jedis = null;
try {
jedis = jedisPool.getResource();
//具體的命令
jedis.executeCommand()
} catch (Exception e) {
logger.error("op key {} error: " + e.getMessage(), key, e);
} finally {
//注意這裏不是關閉鏈接,在JedisPool模式下,Jedis會被歸還給資源池。
if (jedis != null)
jedis.close();
}複製代碼
下面是JedisPool優化方法的文章:
高併發下建議客戶端添加熔斷功能(例如netflix hystrix)
設置合理的密碼,若有必要可使用SSL加密訪問(阿里雲Redis支持)
根據自身業務類型,選好maxmemory-policy(最大內存淘汰策略),設置好過時時間。
默認策略是volatile-lru,即超過最大內存後,在過時鍵中使用lru算法進行key的剔除,保證不過時數據不被刪除,可是可能會出現OOM問題。
redis間數據同步可使用:redis-port
阿里雲Redis已經在內核層面解決熱點key問題,歡迎使用。複製代碼
1\. 下面操做可使用pipeline加速。
2\. redis 4.0已經支持key的異步刪除,歡迎使用。複製代碼
public void delBigHash(String host, int port, String password, String bigHashKey) {
Jedis jedis = new Jedis(host, port);
if (password != null && !"".equals(password)) {
jedis.auth(password);
}
ScanParams scanParams = new ScanParams().count(100);
String cursor = "0";
do {
ScanResult<Entry<String, String>> scanResult = jedis.hscan(bigHashKey, cursor, scanParams);
List<Entry<String, String>> entryList = scanResult.getResult();
if (entryList != null && !entryList.isEmpty()) {
for (Entry<String, String> entry : entryList) {
jedis.hdel(bigHashKey, entry.getKey());
}
}
cursor = scanResult.getStringCursor();
} while (!"0".equals(cursor));
//刪除bigkey
jedis.del(bigHashKey);
}複製代碼
public void delBigList(String host, int port, String password, String bigListKey) {
Jedis jedis = new Jedis(host, port);
if (password != null && !"".equals(password)) {
jedis.auth(password);
}
long llen = jedis.llen(bigListKey);
int counter = 0;
int left = 100;
while (counter < llen) {
//每次從左側截掉100個
jedis.ltrim(bigListKey, left, llen);
counter += left;
}
//最終刪除key
jedis.del(bigListKey);
}複製代碼
public void delBigSet(String host, int port, String password, String bigSetKey) {
Jedis jedis = new Jedis(host, port);
if (password != null && !"".equals(password)) {
jedis.auth(password);
}
ScanParams scanParams = new ScanParams().count(100);
String cursor = "0";
do {
ScanResult<String> scanResult = jedis.sscan(bigSetKey, cursor, scanParams);
List<String> memberList = scanResult.getResult();
if (memberList != null && !memberList.isEmpty()) {
for (String member : memberList) {
jedis.srem(bigSetKey, member);
}
}
cursor = scanResult.getStringCursor();
} while (!"0".equals(cursor));
//刪除bigkey
jedis.del(bigSetKey);
}複製代碼
public void delBigZset(String host, int port, String password, String bigZsetKey) {
Jedis jedis = new Jedis(host, port);
if (password != null && !"".equals(password)) {
jedis.auth(password);
}
ScanParams scanParams = new ScanParams().count(100);
String cursor = "0";
do {
ScanResult<Tuple> scanResult = jedis.zscan(bigZsetKey, cursor, scanParams);
List<Tuple> tupleList = scanResult.getResult();
if (tupleList != null && !tupleList.isEmpty()) {
for (Tuple tuple : tupleList) {
jedis.zrem(bigZsetKey, tuple.getElement());
}
}
cursor = scanResult.getStringCursor();
} while (!"0".equals(cursor));
//刪除bigkey
jedis.del(bigZsetKey);
}複製代碼