Package com.thimbleware.jmemcached.storage.hash

Examples of com.thimbleware.jmemcached.storage.hash.LRUCacheStorageDelegate


  @PostConstruct
  public void start() throws Exception {

    logger.info("Initializing JMemcached Daemon");

    LRUCacheStorageDelegate cacheStorage = new LRUCacheStorageDelegate(maxItems, maxBytes, ceilingSize);

    jmemcached = new MemCacheDaemon();
    jmemcached.setCache(new Cache(cacheStorage));
    jmemcached.setAddr(AddrUtil.getAddresses(serverUrl).get(0));
    jmemcached.setBinary(false);
View Full Code Here

TOP

Related Classes of com.thimbleware.jmemcached.storage.hash.LRUCacheStorageDelegate

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.