com.github.mwarc.embeddedmemcached.MemcachedServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-memcached-spring Show documentation
Show all versions of embedded-memcached-spring Show documentation
embedded-memcached-spring provides a way to use jmemcache-daemon with Spring TestContext Framework
package com.github.mwarc.embeddedmemcached;
public interface MemcachedServer {
void start(String host, int port);
void clean();
}