cn.ipokerface.snowflake.SnowflakeCacheService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snowflake-id-generator-spring Show documentation
Show all versions of snowflake-id-generator-spring Show documentation
A Java lib tools of ipokerface repository
The newest version!
package cn.ipokerface.snowflake;
public interface SnowflakeCacheService {
String setNX(String key,String value);
Long ttl(String key);
Long expire(String key, int seconds);
}