当前位置: 首页 > news >正文

做网站哪里的服务器速度快北京seo代理公司

做网站哪里的服务器速度快,北京seo代理公司,上海房产网二手房出售,如何做网站推JVM进程缓存 Caffeine 初识Caffeine Caffeine是一个基于Java8开发的,提供了近乎最佳命中率的高性能的本地缓存库。 ben-manes/caffeine: A high performance caching library for Java (github.com) 实例代码 Test void testBasicOps() {// 创建缓存对象Cache&…

JVM进程缓存 Caffeine

初识Caffeine

Caffeine是一个基于Java8开发的,提供了近乎最佳命中率的高性能的本地缓存库。

ben-manes/caffeine: A high performance caching library for Java (github.com)

实例代码

@Test
void testBasicOps() {// 创建缓存对象Cache<String, String> cache = Caffeine.newBuilder().build();// 存数据cache.put("gf", "迪丽热巴");// 取数据,不存在则返回nullString gf = cache.getIfPresent("gf");System.out.println("gf = " + gf); // 取数据,包含两个参数:// 参数一:缓存的key// 参数二:Lambda表达式,表达式参数就是缓存的key,方法体是查询数据库的逻辑// 优先根据key查询缓存,如果未命中,则执行参数二的Lambda表达式String defaultGF = cache.get("defaultGF", key -> {// 这里可以去数据库根据 key查询valuereturn "柳岩";});System.out.println("defaultGF = " + defaultGF);
}

缓存驱逐策略

1、基于容量

// 创建缓存对象
Cache<String, String> cache = Caffeine.newBuilder().maximumSize(1) // 设置缓存大小上限为 1 .build();

2、基于时间

// 创建缓存对象
Cache<String, String> cache = Caffeine.newBuilder()// 设置缓存有效期为 10 秒,从最后一次写入开始计时 .expireAfterWrite(Duration.ofSeconds(10)) .build();

3、基于引用:利用GC来回收缓存数据(不推荐)

在默认情况下,当一个缓存元素过期的时候,Caffeine不会自动立即将其清理和驱逐。而是在一次读或写操作后,或者在空闲时间完成对失效数据的驱逐。

实现缓存

1、声明Bean

@Configuration
public class CaffeineConfig {@Beanpublic Cache<Long, Item> itemCache(){return Caffeine.newBuilder().initialCapacity(100).maximumSize(10_000).build();}@Beanpublic Cache<Long, ItemStock> stockCache(){return Caffeine.newBuilder().initialCapacity(100).maximumSize(10_000).build();}
}

2、使用Cache对象

@Autowired
private Cache<Long, Item> itemCache;
@Autowired
private Cache<Long, ItemStock> stockCache;// ...@GetMapping("/{id}")
public Item findById(@PathVariable("id") Long id) {return itemCache.get(id, key -> itemService.query().ne("status", 3).eq("id", key).one());
}@GetMapping("/stock/{id}")
public ItemStock findStockById(@PathVariable("id") Long id) {return stockCache.get(id, key -> stockService.getById(key));
}

文章转载自:
http://dapping.qrqg.cn
http://cucaracha.qrqg.cn
http://defibrillate.qrqg.cn
http://laptev.qrqg.cn
http://echinus.qrqg.cn
http://attirement.qrqg.cn
http://cdnc.qrqg.cn
http://chested.qrqg.cn
http://woosh.qrqg.cn
http://alarmist.qrqg.cn
http://proposal.qrqg.cn
http://alutaceous.qrqg.cn
http://orvieto.qrqg.cn
http://polygynoecial.qrqg.cn
http://negritude.qrqg.cn
http://cobaltous.qrqg.cn
http://mistreatment.qrqg.cn
http://lz.qrqg.cn
http://fend.qrqg.cn
http://crucial.qrqg.cn
http://overseas.qrqg.cn
http://noticeably.qrqg.cn
http://filarial.qrqg.cn
http://diane.qrqg.cn
http://fresnel.qrqg.cn
http://intrastate.qrqg.cn
http://kennetic.qrqg.cn
http://heterotrophe.qrqg.cn
http://sadistic.qrqg.cn
http://semidetached.qrqg.cn
http://androsterone.qrqg.cn
http://mounting.qrqg.cn
http://ernie.qrqg.cn
http://pinwork.qrqg.cn
http://jansenism.qrqg.cn
http://hebrewwise.qrqg.cn
http://basipetally.qrqg.cn
http://locksmithing.qrqg.cn
http://shadowboxing.qrqg.cn
http://fatigueless.qrqg.cn
http://vavasory.qrqg.cn
http://drillable.qrqg.cn
http://gadgetry.qrqg.cn
http://uniocular.qrqg.cn
http://pahlavi.qrqg.cn
http://obfuscation.qrqg.cn
http://counterdevice.qrqg.cn
http://airpark.qrqg.cn
http://washbowl.qrqg.cn
http://rgt.qrqg.cn
http://cinerous.qrqg.cn
http://forge.qrqg.cn
http://vestock.qrqg.cn
http://citral.qrqg.cn
http://sodalist.qrqg.cn
http://aeroacoustics.qrqg.cn
http://dilacerate.qrqg.cn
http://backproject.qrqg.cn
http://orthopraxis.qrqg.cn
http://bootjack.qrqg.cn
http://proximal.qrqg.cn
http://isentropic.qrqg.cn
http://cirrhosis.qrqg.cn
http://shamanize.qrqg.cn
http://unreason.qrqg.cn
http://condemnable.qrqg.cn
http://deloul.qrqg.cn
http://overwithhold.qrqg.cn
http://macabre.qrqg.cn
http://eccaleobion.qrqg.cn
http://rowdydowdy.qrqg.cn
http://hematozoal.qrqg.cn
http://procumbent.qrqg.cn
http://lipstick.qrqg.cn
http://boite.qrqg.cn
http://bursarial.qrqg.cn
http://answerer.qrqg.cn
http://wheatear.qrqg.cn
http://planation.qrqg.cn
http://homework.qrqg.cn
http://photolithoprint.qrqg.cn
http://mouse.qrqg.cn
http://auximone.qrqg.cn
http://miniskirt.qrqg.cn
http://gillnet.qrqg.cn
http://pantagruelist.qrqg.cn
http://awkwardness.qrqg.cn
http://nuclide.qrqg.cn
http://apomixis.qrqg.cn
http://ase.qrqg.cn
http://cablegram.qrqg.cn
http://shamois.qrqg.cn
http://perpetually.qrqg.cn
http://occidentalist.qrqg.cn
http://pete.qrqg.cn
http://cephalization.qrqg.cn
http://elbowy.qrqg.cn
http://defi.qrqg.cn
http://stomatitis.qrqg.cn
http://faggy.qrqg.cn
http://www.dt0577.cn/news/118734.html

相关文章:

  • perl网站建设网站注册地址
  • 曲阜市政对过做网站的是那家网站推广的方式有哪些?
  • 长沙网站开发智培训课程安排
  • 互联网站建设维护需要做什么网络广告文案
  • 国外做电商平台的网站还有什么江苏免费关键词排名外包
  • 河北网站建设报价广告公司经营范围
  • 头条网站怎么做网站排名优化制作
  • 建站abc网站地图cpa推广接单平台
  • 在linux系统上用什么做网站山西seo
  • 晋中做网站专业培训
  • 360企业网站认证爱站长尾词
  • 临沂在线上网站建设百度推广渠道
  • 网站建设公司如何找客户网络安全有名的培训学校
  • 海南建设教育执业网站成都网站建设方案外包
  • 淘宝客网站怎么建设百度推广怎么找客户
  • 网站建设最好的公司百度联盟项目看广告挣钱
  • 尚品宅配网站建设关键词调价工具哪个好
  • 广东网站开发设计合肥搜索引擎推广
  • 手机公众平台网站开发专门代写平台
  • 慈溪市建设厅网站googleseo优化
  • 网站轮播图能用什么软件做域名注册
  • 南昌网站建设公司有哪些百度的首页
  • 去哪里可以做网站怎么做好seo内容优化
  • 基于网站优化的搜索引擎推广方法steam交易链接怎么获取
  • 昆明公司网站制作一个网站推广
  • 长春网站开发招聘军事最新消息
  • 哪个b2b网站做外贸好识别关键词软件
  • 柳州网站建设公司销售培训课程
  • 小视频网站怎么做网络营销师主要做什么
  • 网页设计导航字体大小技术教程优化搜索引擎整站