一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - 詳解spring cloud hystrix緩存功能的使用

詳解spring cloud hystrix緩存功能的使用

2021-05-26 12:46TS笑天 Java教程

這篇文章主要介紹了詳解spring cloudhystrix緩存功能的使用,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

hystrix緩存的作用是

- 1.減少重復的請求數,降低依賴服務的返回數據始終保持一致。
- 2.==在同一個用戶請求的上下文中,相同依賴服務的返回數據始終保持一致==。
- 3.請求緩存在run()和construct()執行之前生效,所以可以有效減少不必要的線程開銷。

1 通過hystrixcommand類實現

1.1 開啟緩存功能

繼承hystrixcommand或hystrixobservablecommand,覆蓋getcachekey()方法,指定緩存的key,開啟緩存配置。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import com.netflix.hystrix.hystrixcommand;
import com.netflix.hystrix.hystrixcommandgroupkey;
import com.netflix.hystrix.hystrixcommandkey;
import com.netflix.hystrix.hystrixrequestcache;
import com.netflix.hystrix.strategy.concurrency.hystrixconcurrencystrategydefault;
import com.szss.demo.orders.vo.uservo;
import org.slf4j.logger;
import org.slf4j.loggerfactory;
import org.springframework.web.client.resttemplate;
 
public class usercachecommand extends hystrixcommand<uservo> {
  private static final logger logger = loggerfactory.getlogger(usercachecommand.class);
 
  private static final hystrixcommandkey getter_key= hystrixcommandkey.factory.askey("commandkey");
  private resttemplate resttemplate;
  private string username;
 
  public usercachecommand(resttemplate resttemplate, string username) {
    super(setter.withgroupkey(hystrixcommandgroupkey.factory.askey("usercachecommand")).andcommandkey(getter_key));
    this.resttemplate = resttemplate;
    this.username = username;
  }
 
  @override
  protected uservo run() throws exception {
    logger.info("thread:" + thread.currentthread().getname());
    return resttemplate.getforobject("http://users-service/user/name/{username}", uservo.class, username);
  }
 
  @override
  protected uservo getfallback() {
    uservo user = new uservo();
    user.setid(-1l);
    user.setusername("調用失敗");
    return user;
  }
 
  @override
  protected string getcachekey() {
    return username;
  }
 
  public static void flushcache(string username){
    hystrixrequestcache.getinstance(getter_key, hystrixconcurrencystrategydefault.getinstance()).clear(username);
  }
}

1.2 配置hystrixrequestcontextservletfilter

通過servlet的filter配置hystrix的上下文。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import com.netflix.hystrix.strategy.concurrency.hystrixrequestcontext;
import javax.servlet.*;
import javax.servlet.annotation.webfilter;
import java.io.ioexception;
 
@webfilter(filtername = "hystrixrequestcontextservletfilter",urlpatterns = "/*",asyncsupported = true)
public class hystrixrequestcontextservletfilter implements filter {
  public void dofilter(servletrequest request, servletresponse response, filterchain chain) throws ioexception, servletexception {
    hystrixrequestcontext context = hystrixrequestcontext.initializecontext();
    try {
      chain.dofilter(request, response);
    } finally {
      context.shutdown();
    }
  }
 
  @override
  public void init(filterconfig filterconfig) throws servletexception {
 
  }
 
  @override
  public void destroy() {
 
  }
}

在不同context中的緩存是不共享的,還有這個request內部一個threadlocal,所以request只能限于當前線程。

1.3 清除失效緩存

繼承hystrixcommand或hystrixobservablecommand,在更新接口調用完成后,清空緩存。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import com.netflix.hystrix.hystrixcommand;
import com.netflix.hystrix.hystrixcommandgroupkey;
import com.netflix.hystrix.hystrixcommandkey;
import com.szss.demo.orders.vo.uservo;
import org.slf4j.logger;
import org.slf4j.loggerfactory;
import org.springframework.http.httpentity;
import org.springframework.web.client.resttemplate;
 
public class userupdatecachecommand extends hystrixcommand<uservo> {
  private static final logger logger = loggerfactory.getlogger(userupdatecachecommand.class);
 
  private static final hystrixcommandkey getter_key = hystrixcommandkey.factory.askey("commandkey");
  private resttemplate resttemplate;
  private uservo user;
 
  public userupdatecachecommand(resttemplate resttemplate, uservo user) {
    super(setter.withgroupkey(hystrixcommandgroupkey.factory.askey("userupdatecachecommand")));
    this.resttemplate = resttemplate;
    this.user = user;
  }
 
  @override
  protected uservo run() throws exception {
    logger.info("thread:" + thread.currentthread().getname());
    httpentity<uservo> u = new httpentity<uservo>(user);
    uservo uservo=resttemplate.postforobject("http://users-service/user",u,uservo.class);
    usercachecommand.flushcache(user.getusername());
    return uservo;
  }
 
//  @override
//  protected uservo getfallback() {
//    uservo user = new uservo();
//    user.setid(-1l);
//    user.setusername("調用失敗");
//    return user;
//  }
 
  @override
  protected string getcachekey() {
    return user.getusername();
  }
}

2 使用@cacheresult、@cacheremove和@cachekey標注來實現緩存

2.1 使用@cacheresult實現緩存功能

?
1
2
3
4
5
6
7
8
9
10
@cacheresult(cachekeymethod = "getcachekey")
@hystrixcommand(commandkey = "finduserbyid", groupkey = "userservice", threadpoolkey = "userservicethreadpool")
public uservo findbyid(long id) {
  responseentity<uservo> user = resttemplate.getforentity("http://users-service/user?id={id}", uservo.class, id);
  return user.getbody();
}
 
public string getcachekey(long id) {
  return string.valueof(id);
}

@cacheresult注解中的cachekeymethod用來標示緩存key(cachekey)的生成函數。函數的名稱可任意取名,入參和標注@cacheresult的方法是一致的,返回類型是string。

2.2 使用@cacheresult和@cachekey實現緩存功能

?
1
2
3
4
5
6
@cacheresult
@hystrixcommand(commandkey = "finduserbyid", groupkey = "userservice", threadpoolkey = "userservicethreadpool")
public uservo findbyid2(@cachekey("id") long id) {
  responseentity<uservo> user = resttemplate.getforentity("http://users-service/user?id={id}", uservo.class, id);
  return user.getbody();
}

標注@hystrixcommand注解的方法,使用@cachekey標注需要指定的參數作為緩存key。

2.3 使用@cacheremove清空緩存

?
1
2
3
4
5
@cacheremove(commandkey = "finduserbyid")
@hystrixcommand(commandkey = "updateuser",groupkey = "userservice",threadpoolkey = "userservicethreadpool")
public void updateuser(@cachekey("id")uservo user){
  resttemplate.postforobject("http://users-service/user",user,uservo.class);
}

@cacheremove必須指定commandkey,否則程序無法找到緩存位置。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:https://blog.csdn.net/zhuchuangang/article/details/74566185

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 精品国产麻豆AV无码 | 日韩成人精品在线 | 女人叉开腿让男人捅 | 国产日韩精品一区二区 | 91免费永久在线地址 | 满溢游泳池免费土豪全集下拉版 | 满城尽带黄金甲大胸片 | 热99re久久精品国产 | 97影音| 16男男gaygays| 日韩国产欧美成人一区二区影院 | 四虎成人4hutv影院 | 小嫩videos| 2021最新国产成人精品视频 | 国产在线看片护士免费视频 | 色综合天天综合网看在线影院 | 91精品国产91久久久久 | 国产高清ujzzujzz | 精品欧美一区二区三区久久久 | 日本美女视频韩国视频网站免费 | 出水小说| 黄 色 大 片 网站 | 亚洲qvod图片区电影 | 日本免费三片在线播放 | 51国产午夜精品免费视频 | 公妇乱淫在线播放免费观看 | 99re精品在线 | 日韩欧美综合在线二区三区 | 亚洲免费在线视频 | 美女被免费视频 | 色网在线视频 | 欧美一区二区三区大片 | 国产91免费在线 | 色怡红院 | 日本在线视频播放 | np高h疯狂黄暴宫口 narutomanga玖辛奈之乳 | 91麻豆网址| 国内久久精品 | 成功精品影院 | 国产视频久久久久 | 女被男啪到哭 |