![JAR search and dependency download from the Maven repository](/logo.png)
com.github.mwarc.embeddedmemcached.EmbeddedMemcached 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
Spring Test framework to develop with memcached
package com.github.mwarc.embeddedmemcached;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
public @interface EmbeddedMemcached {
String host() default "127.0.0.1";
int port() default 11214;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy