-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathRedisCacheUtil.java
352 lines (314 loc) · 10.8 KB
/
RedisCacheUtil.java
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.*;
import org.springframework.stereotype.Component;
import java.util.*;
import java.util.concurrent.TimeUnit;
/**
* @author wenjie
* @create 2017-06-15 19:09
**/
@Component
public class RedisCacheUtil<T> {
@Autowired
public RedisTemplate redisTemplate;
/**
* 缓存基本的对象,Integer、String、实体类等
*
* @param key 缓存的键值
* @param value 缓存的值
* @return 缓存的对象
*/
public <T> ValueOperations<String, T> setCacheObject(String key, T value) {
ValueOperations<String, T> operation = redisTemplate.opsForValue();
operation.set(key, value);
return operation;
}
public <T> ValueOperations<String, T> setCacheObject(String key, T value, Integer timeout, TimeUnit timeUnit) {
ValueOperations<String, T> operation = redisTemplate.opsForValue();
operation.set(key, value, timeout, timeUnit);
return operation;
}
/**
* 获得缓存的基本对象。
*
* @param key 缓存键值
* @return 缓存键值对应的数据
*/
public <T> T getCacheObject(String key) {
ValueOperations<String, T> operation = redisTemplate.opsForValue();
return operation.get(key);
}
/**
* 删除单个对象
*
* @param key
*/
public void deleteObject(String key) {
redisTemplate.delete(key);
}
/**
* 删除集合对象
*
* @param collection
*/
public void deleteObject(Collection collection) {
redisTemplate.delete(collection);
}
/**
* 缓存List数据
*
* @param key 缓存的键值
* @param dataList 待缓存的List数据
* @return 缓存的对象
*/
public <T> ListOperations<String, T> setCacheList(String key, List<T> dataList) {
ListOperations listOperation = redisTemplate.opsForList();
if (null != dataList) {
int size = dataList.size();
for (int i = 0; i < size; i++) {
listOperation.leftPush(key, dataList.get(i));
}
}
return listOperation;
}
/**
* 获得缓存的list对象
*
* @param key 缓存的键值
* @return 缓存键值对应的数据
*/
public <T> List<T> getCacheList(String key) {
List<T> dataList = new ArrayList<T>();
ListOperations<String, T> listOperation = redisTemplate.opsForList();
Long size = listOperation.size(key);
for (int i = 0; i < size; i++) {
dataList.add(listOperation.index(key, i));
}
return dataList;
}
/**
* 缓存Set
*
* @param key 缓存键值
* @param dataSet 缓存的数据
* @return 缓存数据的对象
*/
public <T> BoundSetOperations<String, T> setCacheSet(String key, Set<T> dataSet) {
BoundSetOperations<String, T> setOperation = redisTemplate.boundSetOps(key);
Iterator<T> it = dataSet.iterator();
while (it.hasNext()) {
setOperation.add(it.next());
}
return setOperation;
}
/**
* 获得缓存的set
*
* @param key
* @return
*/
public Set<T> getCacheSet(String key) {
Set<T> dataSet = new HashSet<T>();
BoundSetOperations<String, T> operation = redisTemplate.boundSetOps(key);
Long size = operation.size();
for (int i = 0; i < size; i++) {
dataSet.add(operation.pop());
}
return dataSet;
}
/**
* 缓存Map
*
* @param key
* @param dataMap
* @return
*/
public <T> HashOperations<String, String, T> setCacheMap(String key, Map<String, T> dataMap) {
HashOperations hashOperations = redisTemplate.opsForHash();
if (null != dataMap) {
for (Map.Entry<String, T> entry : dataMap.entrySet()) {
hashOperations.put(key, entry.getKey(), entry.getValue());
}
}
return hashOperations;
}
/**
* 获得缓存的Map
*
* @param key
* @return
*/
public <T> Map<String, T> getCacheMap(String key) {
Map<String, T> map = redisTemplate.opsForHash().entries(key);
return map;
}
/**
* 缓存Map
*
* @param key
* @param dataMap
* @return
*/
public <T> HashOperations<String, Integer, T> setCacheIntegerMap(String key, Map<Integer, T> dataMap) {
HashOperations hashOperations = redisTemplate.opsForHash();
if (null != dataMap) {
for (Map.Entry<Integer, T> entry : dataMap.entrySet()) {
hashOperations.put(key, entry.getKey(), entry.getValue());
}
}
return hashOperations;
}
/**
* 获得缓存的Map
*
* @param key
* @return
*/
public <T> Map<Integer, T> getCacheIntegerMap(String key) {
Map<Integer, T> map = redisTemplate.opsForHash().entries(key);
return map;
}
//=====================GEO地理位置相关=====================
/**
* 增加定位点
*
* @param x
* @param y
* @param member
* @param time
* @return
*/
public boolean addGeo(double x, double y, String member, long time) {
String key = GEO_KEY;
try {
GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
geoOps.add(key, new Point(x, y), member);
if (time > 0) {
redisTemplate.expire(key, time, TimeUnit.SECONDS);
}
} catch (Throwable t) {
t.printStackTrace();
log.error("缓存[" + key + "]" + "失败, point[" + x + "," +
y + "], member[" + member + "]" + ", error[" + t + "]");
}
return true;
}
/**
* 删除定位点
*
* @param members
* @return
*/
public boolean removeGeo(String... members) {
try {
GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
geoOps.remove(GEO_KEY, members);
} catch (Throwable t) {
log.error("移除[" + GEO_KEY + "]" + "失败" + ", error[" + t + "]");
}
return true;
}
/**
* 计算定位距离
*
* @param member1
* @param member2
* @return
*/
public Distance distanceGeo(String member1, String member2) {
try {
GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
return geoOps.geoDist(GEO_KEY, member1, member2);
} catch (Throwable t) {
log.error("计算距离[" + GEO_KEY + "]" + "失败, member[" + member1 + "," + member2 + "], error[" + t + "]");
}
return null;
}
/**
* 获取坐标
*
* @param members
* @return
*/
public List<Point> getGeo(String... members) {
try {
GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
return geoOps.position(GEO_KEY, members);
} catch (Throwable t) {
log.error("获取坐标[" + GEO_KEY + "]" + "失败]" + ", error[" + t + "]");
}
return null;
}
/**
* 基于某个坐标的附近的东西
*
* @param x
* @param y
* @param distance
* @param direction
*/
public List<GeoRadiusDto> raduisGeo(double x, double y, double distance, Sort.Direction direction) {
List<GeoRadiusDto> radiusDtos = new ArrayList<>();
try {
GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
//设置geo查询参数
RedisGeoCommands.GeoRadiusCommandArgs geoRadiusArgs = RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs();
geoRadiusArgs = geoRadiusArgs.includeCoordinates().includeDistance();//查询返回结果包括距离和坐标
if (Sort.Direction.ASC.equals(direction)) {//按查询出的坐标距离中心坐标的距离进行排序
geoRadiusArgs.sortAscending();
} else if (Sort.Direction.DESC.equals(direction)) {
geoRadiusArgs.sortDescending();
}
GeoResults<RedisGeoCommands.GeoLocation<String>> geoResults = geoOps.radius(GEO_KEY, new Circle(new Point(x, y), new Distance(distance, RedisGeoCommands.DistanceUnit.METERS)), geoRadiusArgs);
List<GeoResult<RedisGeoCommands.GeoLocation<String>>> geoResultList = geoResults.getContent();
for (GeoResult<RedisGeoCommands.GeoLocation<String>> geoResult : geoResultList) {
String name = geoResult.getContent().getName();
Point point = geoResult.getContent().getPoint();
GeoRadiusDto radiusDto = new GeoRadiusDto();
radiusDto.setMember(name);
radiusDto.setX(point.getX());
radiusDto.setY(point.getY());
radiusDtos.add(radiusDto);
}
} catch (Throwable t) {
}
return radiusDtos;
}
/**
* 基于某个key的附近的东西
*
* @param member
* @param distance
* @param direction
*/
public List<GeoRadiusDto> raduisGeo(String member, double distance, Sort.Direction direction) {
List<GeoRadiusDto> radiusDtos = new ArrayList<>();
try {
GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
//设置geo查询参数
RedisGeoCommands.GeoRadiusCommandArgs geoRadiusArgs = RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs();
geoRadiusArgs = geoRadiusArgs.includeCoordinates().includeDistance();//查询返回结果包括距离和坐标
if (Sort.Direction.ASC.equals(direction)) {//按查询出的坐标距离中心坐标的距离进行排序
geoRadiusArgs.sortAscending();
} else if (Sort.Direction.DESC.equals(direction)) {
geoRadiusArgs.sortDescending();
}
GeoResults<RedisGeoCommands.GeoLocation<String>> geoResults = geoOps.radius(GEO_KEY, member, new Distance(distance, RedisGeoCommands.DistanceUnit.METERS), geoRadiusArgs);
List<GeoResult<RedisGeoCommands.GeoLocation<String>>> geoResultList = geoResults.getContent();
for (GeoResult<RedisGeoCommands.GeoLocation<String>> geoResult : geoResultList) {
String name = geoResult.getContent().getName();
//结果集排除自己
if (!name.equals(member)) {
Point point = geoResult.getContent().getPoint();
GeoRadiusDto radiusDto = new GeoRadiusDto();
radiusDto.setMember(name);
radiusDto.setX(point.getX());
radiusDto.setY(point.getY());
radiusDtos.add(radiusDto);
}
}
} catch (Throwable t) {
}
return radiusDtos;
}
}