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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package com.sky.blog.util2;

import com.alibaba.fastjson.JSON;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;

/**
* @author Administrator
*/
@Component(value = "redisUtils")
public class RedisUtils<T> {

/**
* 如果这个Qualifier 里面的value redisTemplate 报红可以忽略不计
*/
@Autowired
@Qualifier(value = "redisTemplate")
private RedisTemplate redisTemplate;

/**
* 设置指定过期时间
*
* @param key
* @param time
* @return
*/
public Boolean setExpire(String key, Long time) {

try {
if (time > 0) {
redisTemplate.expire(key, time, TimeUnit.SECONDS);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}

/**
* 根据key获取数据过期时间
*
* @param key
* @return
*/
public long getExpire(String key) {
return redisTemplate.getExpire(key, TimeUnit.SECONDS);
}

/**
* 清楚缓存
* 根据传入的key的数量自行判断
*
* @param keys
*/
public void deleteCache(String... keys) {
if (keys != null && keys.length > 0) {
if (keys.length == 1) {
redisTemplate.delete(keys[0]);
} else {
redisTemplate.delete(CollectionUtils.arrayToList(keys));
}
}
}

/**
* 获取普通键的值
*
* @param key
* @return
*/
public Object getNormalValue(String key) {
return key != null ? redisTemplate.opsForValue().get(key) : null;
}

/**
* 设置普通的值
*
* @param key
* @param value
* @param time
* @return
*/
public Boolean setNormalValue(String key, Object value, Long time) {
try {
if (key != null && value != null && time == null) {
redisTemplate.opsForValue().set(key, value);
} else if (key != null && value != null && time != null) {
redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}

/**
* 递增
*
* @param key 键
* @param recursionFactor 每次递增的值
* @return
*/
public long increment(String key, Long recursionFactor) {
if (recursionFactor < 0) {
throw new RuntimeException("递归因子必须大于0");
}
return redisTemplate.opsForValue().increment(key, recursionFactor);
}

/**
* 递减
*
* @param key 键
* @param recursionFactor 每次递减的值
* @return
*/
public long decrement(String key, Long recursionFactor) {
if (recursionFactor < 0) {
throw new RuntimeException("递归因子必须大于0");
}
return redisTemplate.opsForValue().decrement(key, recursionFactor);
}

/**
* 设置hash
*
* @param key
* @param hashKeys
* @param value
* @return
*/
public boolean setHash(String key, Object[] hashKeys, Object... value) {
try {
if (key != null && hashKeys != null && value != null) {
if (hashKeys.length == 1 && value.length == 1) {
redisTemplate.opsForHash().putIfAbsent(key, hashKeys[0], value[0]);
return true;
} else if (hashKeys.length > 1 && value.length > 1) {
for (int i = 0; i < value.length; i++) {
redisTemplate.opsForHash().putIfAbsent(key, hashKeys[i], value[i]);
}
return true;
}
}
return false;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}

/**
* 根据键和hash键获取对象
*
* @param key
* @param hashKey
* @return
*/
public Object getHash(String key, String hashKey) {
if (key != null && hashKey != null) {
return redisTemplate.opsForHash().get(key, hashKey);
}
return null;
}

/**
* 根据键获取所有的hash对象
*
* @param key
* @return
*/
public Object getAllHash(String key) {
if (key != null) {
return redisTemplate.opsForHash().entries(key);
}
return null;
}

/**
* 根据条件获取一个对象或者获取多个对象
*
* @param key
* @param hashKey
* @return
*/
public Object getValueOfField(String key, String... hashKey) {
if (key != null && hashKey != null && hashKey.length > 0) {
// 如果它的length等于一的话说明只传入了一个值,我们只需要用hget就行了
if (hashKey.length == 1) {
return redisTemplate.opsForHash().get(key, hashKey[0]);
}
if (hashKey.length > 1) {
Collection<Object> list = new ArrayList<>();
for (int i = 0; i < hashKey.length; i++) {
list.add(hashKey[i]);
}
return redisTemplate.opsForHash().multiGet(key, list);
}
}
return null;
}

/**
* 删除指定key中的指定field域或者多个field域
*
* @param key
* @param hashKey
* @return
*/
public Boolean deleteValueOfField(String key, String... hashKey) {
try {
if (key != null && hashKey != null && hashKey.length > 0) {
if (hashKey.length == 1) {
redisTemplate.opsForHash().delete(key, hashKey[0]);
return true;
}

if (hashKey.length > 1) {
for (int i = 0; i < hashKey.length; i++) {
redisTemplate.opsForHash().delete(key, hashKey[i]);
}
return true;
}
}
return false;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}

/**
* 获取hash key元素中的数量
*
* @param key
* @param hashKey
* @return
*/
public Long getHashLength(String key, String hashKey) {
try {
if (key != null && hashKey != null) {
return redisTemplate.opsForHash().lengthOfValue(key, hashKey);
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
return null;
}

/**
* 绑定值
*
* @param key
* @param values
*/
public void addArrayList(String key, List<T> values) {
redisTemplate.boundValueOps(key).set(JSON.toJSON(values).toString());
}

public Object getArrayList(String key) {
return redisTemplate.boundValueOps(key).get();
}

/**
* 添加内容到set
*
* @param key
* @param values
*/
public void addValueToSet(String key, List<T> values) {
if (key != null) {
redisTemplate.opsForSet().add(key, JSON.toJSON(values).toString());
}

}

/**
* 获取set集合中的内容
*
* @param key
* @return
*/
public Set getValueOfSet(String key) {
if (key != null) {
return redisTemplate.opsForSet().members(key);
}
return null;
}
}