return call(pc,strFilter,null);
}
public static double call(PageContext pc,String strFilter, String cacheName) throws PageException {
try {
CacheKeyFilter f=filter;
if(CacheGetAllIds.isFilter(strFilter))
f=new WildCardFilter(strFilter,true);
return Util.getCache(pc,cacheName,ConfigImpl.CACHE_DEFAULT_OBJECT).remove(f);
} catch (Exception e) {
throw Caster.toPageException(e);