inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
Copyright [2020] [https://www.xiaonuo.vip]
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
  http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 
Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
 
1.请不要删除和修改根目录下的LICENSE文件。
2.请不要删除和修改Snowy源码头部的版权声明。
3.请保留源码和相关描述文件的项目出处,作者声明等。
4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy
5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy
6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
 */
package vip.xiaonuo.core.cache;
 
import java.util.Collection;
import java.util.Map;
 
/**
 * 缓存操作的基础接口,可以实现不同种缓存实现
 * <p>
 * 泛型为cache的值类class类型
 *
 * @author yubaoshan
 * @date 2020/7/8 22:02
 */
public interface CacheOperator<T> {
 
    /**
     * 添加缓存
     *
     * @param key   键
     * @param value 值
     * @author yubaoshan
     * @date 2020/7/8 22:06
     */
    void put(String key, T value);
 
    /**
     * 添加缓存(带过期时间,单位是秒)
     *
     * @param key            键
     * @param value          值
     * @param timeoutSeconds 过期时间,单位秒
     * @author yubaoshan
     * @date 2020/7/8 22:07
     */
    void put(String key, T value, Long timeoutSeconds);
 
    /**
     * 通过缓存key获取缓存
     *
     * @param key 键
     * @return 值
     * @author yubaoshan
     * @date 2020/7/8 22:08
     */
    Object get(String key);
 
    /**
     * 删除缓存
     *
     * @param key 键,多个
     * @author yubaoshan
     * @date 2020/7/8 22:09
     */
    void remove(String... key);
 
    /**
     * 获得缓存的所有key列表(不带common prefix的)
     *
     * @return key列表
     * @author yubaoshan
     * @date 2020/7/8 22:11
     */
    Collection<String> getAllKeys();
 
    /**
     * 获得缓存的所有值列表
     *
     * @return 值列表
     * @author yubaoshan
     * @date 2020/7/8 22:11
     */
    Collection<T> getAllValues();
 
    /**
     * 获取所有的key,value
     *
     * @return 键值map
     * @author yubaoshan
     * @date 2020/7/8 22:11
     */
    Map<String, T> getAllKeyValues();
 
    /**
     * 通用缓存的前缀,用于区分不同业务
     * <p>
     * 如果带了前缀,所有的缓存在添加的时候,key都会带上这个前缀
     *
     * @return 缓存前缀
     * @author yubaoshan
     * @date 2020/7/9 11:06
     */
    String getCommonKeyPrefix();
 
}