com.github.bingoohuang.westcache.config.DefaultWestCacheConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of westcache Show documentation
Show all versions of westcache Show documentation
java cache with unified administration
package com.github.bingoohuang.westcache.config;
import com.github.bingoohuang.westcache.base.WestCacheConfig;
/**
* @author bingoohuang [[email protected]] Created on 2016/12/23.
*/
public class DefaultWestCacheConfig implements WestCacheConfig {
@Override public long rotateIntervalMillis() {
return 60 * 1000L;
}
@Override public long timeoutMillisToSnapshot() {
return 1000L;
}
}