java-web 常见的缓冲技术

使用缓存技术:对程序进行优化.

* 缓存:其实就是内存中的一块空间.可以使用缓存将数据源中的数据拿到,存入到内存中.后期获得数据的话 从缓存中进行获得.

* 常见欢送有以下几种

1.EHCache         :是Hibernate常使用的二级缓存的插件.

2.Memcache       :

3.Redis                :

        

ehcache

* 使用ehcache:

    * 引入jar包:

扫描二维码关注公众号,回复: 2371638 查看本文章

    * 引入配置文件到src目录下

jar包结构如图:

配置文件

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../config/ehcache.xsd">

    <diskStore path="/home/alex/tmp/ehcache"/>

	<cach
            name="categoryCache"
            maxElementsInMemory="10000"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            overflowToDisk="true"
            maxElementsOnDisk="10000000"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU"
            />
			
	<!--
		默认缓存配置,
		以下属性是必须的:
		    name :cache的标识符,在一个CacheManager中必须唯一。
		    maxElementsInMemory : 在内存中缓存的element的最大数目。
		    maxElementsOnDisk : 在磁盘上缓存的element的最大数目。
		    eternal : 设定缓存的elements是否有有效期。如果为true,timeouts属性被忽略。
		    overflowToDisk : 设定当内存缓存溢出的时候是否将过期的element缓存到磁盘上。

		以下属性是可选的:
		    timeToIdleSeconds : 缓存element在过期前的空闲时间。
                    timeToLiveSeconds : 缓存element的有效生命期。
	            diskPersistent : 在VM重启的时候是否持久化磁盘缓存,默认是false。
		    diskExpiryThreadIntervalSeconds : 磁盘缓存的清理线程运行间隔,默认是120秒.
		    memoryStoreEvictionPolicy : 当内存缓存达到最大,有新的element加入的时候,
                    移除缓存中element的策略。默认是LRU,可选的有LFU和FIFO

	-->
</ehcache>

测试代码

public static void aTest() throws AddressException, MessagingException {
		//通过配置文件的流对象创建ehcache实例
		InputStream is = Test.class.getClassLoader().getResourceAsStream("ehcache.xml");
		CacheManager cm = CacheManager.create(is);
		//按cache name获得cacha
		Cache cache = cm.getCache("categoryCache");
		
		//模拟加入数据数据
		List<String> slist = new ArrayList<>();
		slist.add("a");
		slist.add("b");
		slist.add("c");
		
		cache.put(new Element("testKey", "testVal"));
		cache.put(new Element("testKey2", slist));
		
		//按key获得数据并打印
		Element element = cache.get("testKey");
		System.out.println(element.getObjectKey());
		
		Element element2 = cache.get("testKey2");
		System.out.println(element2.getObjectValue().toString());
	}

输出结果

猜你喜欢

转载自blog.csdn.net/alexzt/article/details/81118030
今日推荐