List of usage examples for org.apache.shiro.cache Cache size
public int size();
From source file:com.zht.common.shiro.realm.ShiroDbRealm.java
License:Apache License
/** * ??.//from w ww . j av a2s. c o m */ public void clearAllCachedAuthorizationInfo() { Cache<Object, AuthorizationInfo> cache = getAuthorizationCache(); if (cache != null && cache.size() > 0) { Set<?> keys = cache.keys(); for (Object key : keys) { cache.remove(key); } } }