Package railo.commons.io.cache

Examples of railo.commons.io.cache.CacheKeyFilter


    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);
View Full Code Here

TOP

Related Classes of railo.commons.io.cache.CacheKeyFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.