Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
ServerModel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
kiritoausna
ServerModel
Commits
8d79ff20
Commit
8d79ff20
authored
Dec 09, 2024
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024.12.9 RedisCache 模糊匹配和删除命令优化,同时优化mybatis的yml配置
parent
3c3d6ce5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
13 deletions
+71
-13
application.yml
gemho-admin/src/main/resources/application.yml
+0
-1
RedisCache.java
...src/main/java/com/gemho/common/core/redis/RedisCache.java
+71
-12
No files found.
gemho-admin/src/main/resources/application.yml
View file @
8d79ff20
...
...
@@ -93,7 +93,6 @@ mybatis-plus:
configuration
:
map-underscore-to-camel-case
:
true
log-impl
:
org.apache.ibatis.logging.nologging.NoLoggingImpl
config-location
:
classpath:mybatis-config.xml
# PageHelper分页插件
pagehelper
:
...
...
gemho-common/src/main/java/com/gemho/common/core/redis/RedisCache.java
View file @
8d79ff20
package
com
.
gemho
.
common
.
core
.
redis
;
import
java.util.Collection
;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.*
;
import
java.util.concurrent.TimeUnit
;
import
com.alibaba.fastjson2.JSONObject
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.redis.core.BoundSetOperations
;
import
org.springframework.data.redis.core.HashOperations
;
import
org.springframework.data.redis.core.RedisTemplate
;
import
org.springframework.data.redis.core.ValueOperations
;
import
org.springframework.data.redis.connection.RedisClusterConnection
;
import
org.springframework.data.redis.connection.RedisClusterNode
;
import
org.springframework.data.redis.connection.RedisConnection
;
import
org.springframework.data.redis.connection.RedisConnectionFactory
;
import
org.springframework.data.redis.connection.jedis.JedisClusterConnection
;
import
org.springframework.data.redis.core.*
;
import
org.springframework.stereotype.Component
;
/**
...
...
@@ -20,6 +21,7 @@ import org.springframework.stereotype.Component;
**/
@SuppressWarnings
(
value
=
{
"unchecked"
,
"rawtypes"
})
@Component
@Slf4j
public
class
RedisCache
{
@Autowired
...
...
@@ -115,8 +117,7 @@ public class RedisCache
*/
public
boolean
deleteObject
(
final
String
key
)
{
return
redisTemplate
.
delete
(
key
);
}
return
redisTemplate
.
unlink
(
key
);}
/**
* 删除集合对象
...
...
@@ -126,7 +127,7 @@ public class RedisCache
*/
public
boolean
deleteObject
(
final
Collection
collection
)
{
return
redisTemplate
.
delete
(
collection
)
>
0
;
return
redisTemplate
.
unlink
(
collection
)
>
0
;
}
/**
...
...
@@ -243,6 +244,7 @@ public class RedisCache
return
redisTemplate
.
opsForHash
().
multiGet
(
key
,
hKeys
);
}
/**
* 删除Hash中的某条数据
*
...
...
@@ -265,4 +267,61 @@ public class RedisCache
{
return
redisTemplate
.
keys
(
pattern
);
}
private
static
final
Integer
SCAN_COUNT
=
10000
;
/**
* 使用scan遍历key
* 为什么不使用keys 因为Keys会引发Redis锁,并且增加Redis的CPU占用,特别是数据庞大的情况下。这个命令千万别在生产环境乱用。
* 支持redis单节点和集群调用
*
* @param matchKey
* @return
*/
public
Set
<
String
>
scanMatch
(
String
matchKey
)
{
Set
<
String
>
keys
=
new
HashSet
();
RedisConnectionFactory
connectionFactory
=
redisTemplate
.
getConnectionFactory
();
RedisConnection
redisConnection
=
connectionFactory
.
getConnection
();
Cursor
<
byte
[]>
scan
=
null
;
//集群
if
(
redisConnection
instanceof
JedisClusterConnection
)
{
RedisClusterConnection
clusterConnection
=
connectionFactory
.
getClusterConnection
();
Iterable
<
RedisClusterNode
>
redisClusterNodes
=
clusterConnection
.
clusterGetNodes
();
Iterator
<
RedisClusterNode
>
iterator
=
redisClusterNodes
.
iterator
();
while
(
iterator
.
hasNext
())
{
RedisClusterNode
next
=
iterator
.
next
();
scan
=
clusterConnection
.
scan
(
next
,
ScanOptions
.
scanOptions
().
match
(
matchKey
).
count
(
Integer
.
MAX_VALUE
).
build
());
while
(
scan
.
hasNext
())
{
keys
.
add
(
new
String
(
scan
.
next
()));
}
try
{
if
(
scan
!=
null
)
{
scan
.
close
();
}
}
catch
(
Exception
e
)
{
log
.
error
(
"scan遍历key关闭游标异常"
,
e
);
}
}
log
.
info
(
JSONObject
.
toJSONString
(
keys
));
return
keys
;
}
//单机 (redisConnection instanceof JedisConnection)
else
{
scan
=
redisConnection
.
scan
(
ScanOptions
.
scanOptions
().
match
(
matchKey
+
"*"
).
count
(
SCAN_COUNT
).
build
());
while
(
scan
.
hasNext
())
{
//找到一次就添加一次
keys
.
add
(
new
String
(
scan
.
next
()));
}
try
{
if
(
scan
!=
null
)
{
scan
.
close
();
}
}
catch
(
Exception
e
)
{
log
.
error
(
"scan遍历key关闭游标异常"
,
e
);
}
return
keys
;
}
//return keys;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment