Monday 27 June 2022

Ehcache: Remove all the elements from the cache

org.ehcache.Cache#clear method remove all the elements from cache.

 

Signature

void clear();

 

Example

empCache.clear();

 


Find the below working application.

 

CacheClearDemo.java

package com.sample.app;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

import org.ehcache.Cache;
import org.ehcache.Cache.Entry;
import org.ehcache.CacheManager;
import org.ehcache.config.builders.CacheConfigurationBuilder;
import org.ehcache.config.builders.CacheManagerBuilder;
import org.ehcache.config.builders.ResourcePoolsBuilder;

public class CacheClearDemo {

	private static void printAllElementsFromCache(Cache<Long, String> empCache) {
		System.out.println("\nPrint all the elements from the cache");

		Iterator<Entry<Long, String>> iter = empCache.iterator();

		while (iter.hasNext()) {
			Entry<Long, String> entry = iter.next();
			System.out.println(entry.getKey() + " is mapped to (" + entry.getValue() + ")");
		}

	}

	public static void main(String[] args) {
		CacheManager cacheManager = CacheManagerBuilder.newCacheManagerBuilder().build(true);

		Cache<Long, String> empCache = cacheManager.createCache("empCache", CacheConfigurationBuilder
				.newCacheConfigurationBuilder(Long.class, String.class, ResourcePoolsBuilder.heap(100)).build());

		Map<Long, String> dataMap = new HashMap<>();
		dataMap.put(1L, "Ram,34");
		dataMap.put(2L, "Krishna,38");
		dataMap.put(3L, "Ravi,41");
		empCache.putAll(dataMap);

		printAllElementsFromCache(empCache);

		System.out.println("\nRemove all the entries from cache");
		empCache.clear();

		printAllElementsFromCache(empCache);

		cacheManager.close();
	}

}

 

Output

Print all the elements from the cache
1 is mapped to (Ram,34)
2 is mapped to (Krishna,38)
3 is mapped to (Ravi,41)

Remove all the entries from cache

Print all the elements from the cache

 

 

 

 

Previous                                                 Next                                                 Home

No comments:

Post a Comment