Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
serviceRec
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
郭羽
serviceRec
Commits
c6f269df
Commit
c6f269df
authored
Aug 20, 2021
by
郭羽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get redis keys test
parent
858c00c8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
get_redis_keys.py
test/get_redis_keys.py
+1
-1
get_redis_keys_hash.py
test/get_redis_keys_hash.py
+8
-9
No files found.
test/get_redis_keys.py
View file @
c6f269df
...
@@ -13,7 +13,7 @@ def getRedisConn1():
...
@@ -13,7 +13,7 @@ def getRedisConn1():
return
conn
return
conn
def
getRedisConn2
():
def
getRedisConn2
():
pool
=
redis
.
ConnectionPool
(
host
=
"172.16.
40.173
"
,
password
=
"ReDis!GmTx*0aN9"
,
port
=
6379
,
db
=
0
)
pool
=
redis
.
ConnectionPool
(
host
=
"172.16.
50.145
"
,
password
=
"ReDis!GmTx*0aN9"
,
port
=
6379
,
db
=
0
)
conn
=
redis
.
Redis
(
connection_pool
=
pool
)
conn
=
redis
.
Redis
(
connection_pool
=
pool
)
return
conn
return
conn
...
...
test/get_redis_keys_hash.py
View file @
c6f269df
...
@@ -14,7 +14,7 @@ def getRedisConn1():
...
@@ -14,7 +14,7 @@ def getRedisConn1():
return
conn
return
conn
def
getRedisConn2
():
def
getRedisConn2
():
pool
=
redis
.
ConnectionPool
(
host
=
"172.16.
40.173
"
,
password
=
"ReDis!GmTx*0aN9"
,
port
=
6379
,
db
=
0
)
pool
=
redis
.
ConnectionPool
(
host
=
"172.16.
50.145
"
,
password
=
"ReDis!GmTx*0aN9"
,
port
=
6379
,
db
=
0
)
conn
=
redis
.
Redis
(
connection_pool
=
pool
)
conn
=
redis
.
Redis
(
connection_pool
=
pool
)
return
conn
return
conn
...
@@ -181,7 +181,7 @@ def redis4():
...
@@ -181,7 +181,7 @@ def redis4():
break
break
print
(
key
,
key_sum
)
print
(
key
,
key_sum
)
nodes
=
[
'7877da182171e313bc9326729f82999d1b629c79'
nodes
=
[
'7877da182171e313bc9326729f82999d1b629c79'
,
'a4d4034faa81b935c2fd583053105b37f1c92ff1'
,
'a4d4034faa81b935c2fd583053105b37f1c92ff1'
,
'a8835d4c987847302bac66c5fc17ee1faae91fa3'
,
'a8835d4c987847302bac66c5fc17ee1faae91fa3'
,
'5a48236679f22637508651530633c9cc2f56f489'
,
'5a48236679f22637508651530633c9cc2f56f489'
...
@@ -189,12 +189,12 @@ def redis4():
...
@@ -189,12 +189,12 @@ def redis4():
,
'eec89d7480980749c998add484e80f23fe5022a4'
,
'eec89d7480980749c998add484e80f23fe5022a4'
,
'f3f1ec6df458a5093c31663517a3cadaed5ab29c'
,
'f3f1ec6df458a5093c31663517a3cadaed5ab29c'
,
'd35c630aad0a8b7f579bf4100f2860401b5d4f52'
]
,
'd35c630aad0a8b7f579bf4100f2860401b5d4f52'
]
conn
=
getRedisConn4
()
conn
=
getRedisConn4
()
num
=
0
num
=
0
key_sum
=
0
key_sum
=
0
res
=
{}
res
=
{}
keys_set
=
set
()
keys_set
=
set
()
for
node
in
nodes
:
for
node
in
nodes
:
cursor
=
"0"
cursor
=
"0"
while
True
:
while
True
:
cursor
,
data
=
conn
.
execute_command
(
"scan {} match {} count {} {}"
.
format
(
cursor
,
"*"
,
10000
,
node
))
cursor
,
data
=
conn
.
execute_command
(
"scan {} match {} count {} {}"
.
format
(
cursor
,
"*"
,
10000
,
node
))
...
@@ -212,7 +212,6 @@ def redis4():
...
@@ -212,7 +212,6 @@ def redis4():
end
=
key
.
split
(
":"
)[
-
1
]
end
=
key
.
split
(
":"
)[
-
1
]
keys_set
.
add
(
key
[
0
:
len
(
key
)
-
len
(
end
)])
keys_set
.
add
(
key
[
0
:
len
(
key
)
-
len
(
end
)])
keys
.
append
(
key
)
keys
.
append
(
key
)
key_sum
+=
len
(
data
)
key_sum
+=
len
(
data
)
print
(
"node:{},curor:{},key_sum:{},keys size:{}"
.
format
(
node
,
str
(
cursor
),
str
(
key_sum
),
str
(
len
(
keys_set
))))
print
(
"node:{},curor:{},key_sum:{},keys size:{}"
.
format
(
node
,
str
(
cursor
),
str
(
key_sum
),
str
(
len
(
keys_set
))))
if
cursor
==
"0"
:
if
cursor
==
"0"
:
...
...
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