Package com.thimbleware.jmemcached

Examples of com.thimbleware.jmemcached.MemCacheDaemon.start()


         
          String host = ERXProperties.stringForKeyWithDefault("er.caching.server.host", WOApplication.application().host());
        daemon.setAddr(new InetSocketAddress(host, port));
          daemon.setIdleTime(50);
          daemon.setVerbose(true);
          daemon.start();
          log.info("Server started: " + host + ":" + port + " maxItems=" + maxItems + " maxMemory=" + maxMemory);
        }
        } catch (IOException e) {
            throw NSForwardException._runtimeExceptionForThrowable(e);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.