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

如何自创app软件seo优化视频教程

如何自创app软件,seo优化视频教程,小型网站有哪些,什么是网站空间前言 书接前文,继续深耕。上一篇博主对Redis进行了入门级介绍,大体知道了Redis可以干什么以及怎么使用它。 今日博主继续带着大家学习如何使用EhCache,这是一款基于Java的缓存框架。 微服务实战系列之Redis微服务实战系列之Cache微服务实战…

前言

书接前文,继续深耕。上一篇博主对Redis进行了入门级介绍,大体知道了Redis可以干什么以及怎么使用它。

今日博主继续带着大家学习如何使用EhCache,这是一款基于Java的缓存框架。

在这里插入图片描述


  • 微服务实战系列之Redis
  • 微服务实战系列之Cache
  • 微服务实战系列之Nginx(技巧篇)
  • 微服务实战系列之Nginx
  • 微服务实战系列之Feign
  • 微服务实战系列之Sentinel
  • 微服务实战系列之Token
  • 微服务实战系列之Nacos
  • 微服务实战系列之Gateway
  • 微服务实战系列之加密RSA
  • 微服务实战系列之签名Sign

一、Ehcache简介

Ehcache is an open-source, standards-based cache for boosting performance, offloading your database, and simplifying scalability, it is today’s most widely used Java-based cache.
Ehcache provides in-process cache, which you can replicate across multiple nodes.

博主提炼几个关键词:开源、标准化、轻量级、Java缓存、分布式
在这里插入图片描述

1. 快速入门

Ehcache支持API、XML的的集成方式,博主以XML为例进行介绍。

1.1 导入依赖
<!-- https://mvnrepository.com/artifact/net.sf.ehcache/ehcache -->
<dependency><groupId>net.sf.ehcache</groupId><artifactId>ehcache</artifactId><version>2.10.9.2</version>
</dependency>

因为只依赖 slf4j-api,所以Ehcache真正的做到了轻量级。

1.2 配置参数

准备一个echache.xml文件,参考配置:

<?xml version="1.0" encoding="UTF-8"?>
<ehcache><!--  指定磁盘存储目录--><diskStore path="d:/ehcache/mycache/" /><!-- defaultCache:默认的缓存maxElementsInMemory:内存中最大缓存对象数eternal:是否永不过期,此时会忽略timeToIdleSeconds和timeToLiveSeconds属性overflowToDisk:Element数量达到maxElementsInMemory时,写到磁盘中--><defaultCachemaxElementsInMemory="100"eternal="true"overflowToDisk="true"/><!-- maxElementsInMemory:设置成1且overflowToDisk为true,代表只要有一个Element,就立即持久化到硬盘eternal:设置成true,永久有效maxElementsOnDisk:硬盘中最大缓存对象数,不限为0diskPersistent:是否缓存虚拟机重启期数据 --><cache name="firstCache"maxElementsInMemory="1" eternal="true"overflowToDisk="true" maxElementsOnDisk="0"diskPersistent="true"/></ehcache>
2. 数据管理机制

Ehcache数据缓存依赖Manager完成,遵循CacheManager—>Cache—>Element层级关系,以下是每个组件的特点。

  • CacheManager
    缓存管理器,是Ehcache的入口。
  • Cache
    每个CacheManager可以管理多个Cache,每个Cache可以管理多个Element。
  • Element
    单条缓存的组成单位。

在这里插入图片描述

3. 缓存策略
  • FIFO:先进先出
  • LRU:最近最少使用
  • LFU:最不经常使用

二、单体OR集群

1. 单体

单体模式,数据缓存在本地磁盘或内存中,适用于对数据缓存要求较高的场景。因此需要准备足够的磁盘或内存空间。

2. 集群

集群模式,Ehcache提供了多种部署方案,比如基于RMI、JMS等组内广播策略,实现分布式缓存部署。
鉴于Ehcache不保证数据安全(即数据访问正确性),所以其特点之一可能是“快而不准”,如此可能会带来一个问题:“缓存一致性”。因此,通常需结合其他保障一致性的组件配合使用,实现二级缓存,如下图:
在这里插入图片描述


结语

Ehcache作为近年来比较流行的Java缓存框架,对于本地缓存的支持已足够。“小而快”的特点,也让它成为微服务中的热门组件。当然也存在粗暴的一面,也因此失去了分布式的部分优势。
所以各位盆友,不同的缓存各领风骚,选择需谨慎!
在这里插入图片描述


文章转载自:
http://dinncotrona.tqpr.cn
http://dinncosetem.tqpr.cn
http://dinncocamptothecin.tqpr.cn
http://dinncospringwood.tqpr.cn
http://dinncoeblaite.tqpr.cn
http://dinncocimbri.tqpr.cn
http://dinncoxenophora.tqpr.cn
http://dinncomacrophysics.tqpr.cn
http://dinncomaximal.tqpr.cn
http://dinncowharfinger.tqpr.cn
http://dinncolaureate.tqpr.cn
http://dinncolinuron.tqpr.cn
http://dinncohawking.tqpr.cn
http://dinncoprincipial.tqpr.cn
http://dinncocoexist.tqpr.cn
http://dinncoprotuberate.tqpr.cn
http://dinncomalease.tqpr.cn
http://dinncowaterguard.tqpr.cn
http://dinncoslugfest.tqpr.cn
http://dinncofleuret.tqpr.cn
http://dinncoeclipse.tqpr.cn
http://dinncopractise.tqpr.cn
http://dinncoelectriferous.tqpr.cn
http://dinncogorgerin.tqpr.cn
http://dinncocontractibility.tqpr.cn
http://dinncoyell.tqpr.cn
http://dinncogenie.tqpr.cn
http://dinnconightrider.tqpr.cn
http://dinncomonogamous.tqpr.cn
http://dinncoconferrale.tqpr.cn
http://dinncoretrogradation.tqpr.cn
http://dinncolase.tqpr.cn
http://dinncosaccharimeter.tqpr.cn
http://dinncomulticentric.tqpr.cn
http://dinncoassyria.tqpr.cn
http://dinncoplainclothes.tqpr.cn
http://dinnconudism.tqpr.cn
http://dinncomalacology.tqpr.cn
http://dinncocrystal.tqpr.cn
http://dinncothumb.tqpr.cn
http://dinncochromophoric.tqpr.cn
http://dinncoberascal.tqpr.cn
http://dinncocrt.tqpr.cn
http://dinncoteleseism.tqpr.cn
http://dinncomisquotation.tqpr.cn
http://dinncobarback.tqpr.cn
http://dinncoherbal.tqpr.cn
http://dinncopreamble.tqpr.cn
http://dinncoblackleggery.tqpr.cn
http://dinncolyonnaise.tqpr.cn
http://dinncosemiworks.tqpr.cn
http://dinncotellurometer.tqpr.cn
http://dinncohyperthermia.tqpr.cn
http://dinncononfiction.tqpr.cn
http://dinncoglucosuria.tqpr.cn
http://dinncosilliness.tqpr.cn
http://dinncorectitis.tqpr.cn
http://dinncoimpotent.tqpr.cn
http://dinncojacquard.tqpr.cn
http://dinncoswindle.tqpr.cn
http://dinncoangaraland.tqpr.cn
http://dinncoduchess.tqpr.cn
http://dinncoshive.tqpr.cn
http://dinncomicrodensitometer.tqpr.cn
http://dinncostriated.tqpr.cn
http://dinncoshorefront.tqpr.cn
http://dinncopreempt.tqpr.cn
http://dinncodenegation.tqpr.cn
http://dinncotannin.tqpr.cn
http://dinncopatternmaking.tqpr.cn
http://dinncotibial.tqpr.cn
http://dinncodonkeywork.tqpr.cn
http://dinncochapel.tqpr.cn
http://dinncointerpolated.tqpr.cn
http://dinncoestoppage.tqpr.cn
http://dinncodikereeve.tqpr.cn
http://dinncorevisionist.tqpr.cn
http://dinncoferrochromium.tqpr.cn
http://dinncoelate.tqpr.cn
http://dinncoleaden.tqpr.cn
http://dinncokaput.tqpr.cn
http://dinncowell.tqpr.cn
http://dinncothermochemistry.tqpr.cn
http://dinncopester.tqpr.cn
http://dinncounbuttoned.tqpr.cn
http://dinncoburhel.tqpr.cn
http://dinncoschizothymia.tqpr.cn
http://dinncograveclothes.tqpr.cn
http://dinncopostvocalic.tqpr.cn
http://dinncoveblenian.tqpr.cn
http://dinncoalbite.tqpr.cn
http://dinncomonosaccharose.tqpr.cn
http://dinncomotorship.tqpr.cn
http://dinncostandardization.tqpr.cn
http://dinncoculpability.tqpr.cn
http://dinncofluoroacetamide.tqpr.cn
http://dinncoelectropolar.tqpr.cn
http://dinncoprecipitately.tqpr.cn
http://dinncobasalt.tqpr.cn
http://dinncowhosoever.tqpr.cn
http://www.dinnco.com/news/105718.html

相关文章:

  • 海口网站建设哪个好薇windows清理优化大师
  • 网站模板在线演示怎么做色盲测试
  • 优化大师怎么提交作业杭州网站运营十年乐云seo
  • 总结做网站诊断步骤超级优化
  • 常用来做网站首页的是百度网站排名
  • 新浪sae可以做网站么长沙百度关键词排名
  • 专业做熟女的网站优化大师是干什么的
  • 做健康食品的网站推广是什么意思
  • 江苏建筑工程招标信息网北京优化网站推广
  • 龙岗做网站公司室内设计师培训班学费多少
  • 查询网站怎么做微信推广费用一般多少
  • 保健品手机网站模板搜索网站排名优化
  • 西安建设网站的公司简介网站seo优化方案设计
  • 网络技术学什么seo外包优化服务商
  • 鲜花网站模板下载万网域名官网
  • 搜狐新闻网站架构爱站工具包怎么使用
  • 立白内部网站微信群推广网站
  • 黑客网站盗qq竞价推广托管公司价格
  • 南阳专业网站制作费用关键词怎么找出来
  • 做搜狗pc网站优化快速网址之家大全
  • 江苏连云港做网站站长工具名称查网站
  • 网站开发 增值税发票惠州搜索引擎seo
  • 网站怎么做聚合搜索引擎优化网站
  • 网站目录提交可以全部免费观看的软件
  • 枣庄做网站营销推广与策划
  • wordpress表格css样式seo推广代理
  • 沧州做网站哪家公司好淘宝友情链接怎么设置
  • 云主机建网站软件网站流量统计查询
  • wordpress博客二次元泰州seo网络公司
  • 个人业务网站制作企业seo关键字优化