mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2025-04-05 17:37:49 +08:00
30 lines
914 B
Java
30 lines
914 B
Java
package cn.keking.service.cache;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @auther: chenjh
|
|
* @time: 2019/4/2 16:45
|
|
* @description
|
|
*/
|
|
public interface CacheService {
|
|
final String REDIS_FILE_PREVIEW_PDF_KEY = "converted-preview-pdf-file";
|
|
final String REDIS_FILE_PREVIEW_IMGS_KEY = "converted-preview-imgs-file";//压缩包内图片文件集合
|
|
|
|
final Integer DEFAULT_PDF_CAPACITY = 500000;
|
|
final Integer DEFAULT_IMG_CAPACITY = 500000;
|
|
|
|
void initPDFCachePool(Integer capacity);
|
|
void initIMGCachePool(Integer capacity);
|
|
void putPDFCache(String key, String value);
|
|
void putImgCache(String key, List<String> value);
|
|
Map<String, String> getPDFCache();
|
|
String getPDFCache(String key);
|
|
Map<String, List<String>> getImgCache();
|
|
List<String> getImgCache(String key);
|
|
|
|
void addQueueTask(String url);
|
|
String takeQueueTask() throws InterruptedException;
|
|
}
|