All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.noear.wood.cache.ICacheController Maven / Gradle / Ivy

The newest version!
package org.noear.wood.cache;

/**
 * 缓存控制接口
 *
 * @author noear
 * @since 3.0
 * */
public interface ICacheController {
    /**
     * 使用哪个缓存服务
     * */
    T caching(ICacheService service);
    /**
     * 是否使用缓存
     * */
    T usingCache(boolean isCache);
    /**
     * 使用缓存并设置时间
     * */
    T usingCache(int seconds);
    /**
     * 为缓存添加标签
     * */
    T cacheTag(String tag);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy