Package com.caucho.distcache

Examples of com.caucho.distcache.CacheManagerImpl


  public DistCacheSystem(AbstractCacheManager<?> distCacheManager)
  {
    if (distCacheManager == null)
      throw new NullPointerException();

    _cacheManager = new CacheManagerImpl();
    _distCacheManager = distCacheManager;
  }
View Full Code Here


  //
  // caching
  //
  public static QuercusDistcache resin_create_distcache(Env env, String name)
  {
    CacheManagerImpl manager = DistCacheSystem.getCurrent().getCacheManager();

    return new QuercusDistcache(manager.create(name));
  }
View Full Code Here

TOP

Related Classes of com.caucho.distcache.CacheManagerImpl

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.