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

com.feingto.cloud.cache.IDataCache Maven / Gradle / Ivy

There is a newer version: 2.5.2.RELEASE
Show newest version
package com.feingto.cloud.cache;

import java.util.List;
import java.util.Map;

/**
 * 数据缓存集合扩展接口
 *
 * @author longfei
 */
public interface IDataCache extends ICache {
    /**
     * 根据指定键的集合值
     *
     * @param key 键
     */
     List getList(String key);

    /**
     * 根据指定键的Map值
     *
     * @param key 键
     */
     Map getMap(String key);

    /**
     * 同步缓存
     */
    boolean sync();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy