
org.accidia.echo.memcache.IMemcacheAccessor Maven / Gradle / Ivy
package org.accidia.echo.memcache;
import com.google.protobuf.Message;
public interface IMemcacheAccessor {
Message get(final String key, long timeoutMs);
void set(final String key, int expiry, final Object value);
void delete(final String key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy