com.googlecode.xmemcached.spring.boot.XmemcachedKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmemcached-spring-boot-starter Show documentation
Show all versions of xmemcached-spring-boot-starter Show documentation
Spring Boot Starter For Xmemcached
package com.googlecode.xmemcached.spring.boot;
import org.springframework.util.StringUtils;
import java.util.Objects;
import java.util.StringJoiner;
import java.util.function.Function;
public enum XmemcachedKey {
/**
* 用户坐标缓存
*/
USER_GEO_LOCATION("用户坐标", (userId)->{
return getKeyStr(XmemcachedKeyConstant.USER_GEO_LOCATION_KEY);
})
;
private String desc;
private Function