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
581ab47e
Commit
581ab47e
authored
Aug 18, 2021
by
郭羽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get redis keys test
parent
6685c3da
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletion
+22
-1
get_redis_keys.py
test/get_redis_keys.py
+22
-1
No files found.
test/get_redis_keys.py
View file @
581ab47e
import
redis
import
redis
import
json
import
json
import
time
import
time
import
pymysql
def
getRedisConn
():
def
getRedisConn
():
conn
=
redis
.
Redis
(
host
=
"172.18.51.10"
,
port
=
6379
,
db
=
0
)
conn
=
redis
.
Redis
(
host
=
"172.18.51.10"
,
port
=
6379
,
db
=
0
)
return
conn
return
conn
...
@@ -31,10 +32,30 @@ def getRedisConn4():
...
@@ -31,10 +32,30 @@ def getRedisConn4():
# conn = redis.Redis(connection_pool=pool)
# conn = redis.Redis(connection_pool=pool)
# return conn
# return conn
def
getDeviceIds
():
ids_set
=
set
()
db
=
pymysql
.
connect
(
host
=
'172.16.30.136'
,
port
=
3306
,
user
=
'doris_olap'
,
passwd
=
'bA27hXasdfswuolap'
,
db
=
'doris_olap'
)
sql
=
"select distinct cl_id from user_tag3_portrait;"
cursor
=
db
.
cursor
()
cursor
.
execute
(
sql
)
datas
=
cursor
.
fetchall
()
for
d
in
datas
:
device_id
=
str
(
d
[
0
])
if
device_id
and
len
(
device_id
)
>
0
:
ids_set
.
add
(
str
(
d
[
0
]))
print
(
"deviceIds size:{}"
.
format
(
str
(
len
(
ids_set
))))
return
ids_set
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
# conns = [getRedisConn1(),getRedisConn2(),getRedisConn3(),getRedisConn4(),getRedisConn5()]
# conns = [getRedisConn1(),getRedisConn2(),getRedisConn3(),getRedisConn4(),getRedisConn5()]
conns
=
[
getRedisConn1
(),
getRedisConn2
(),
getRedisConn3
(),
getRedisConn4
()]
# conns = [getRedisConn1(),getRedisConn2(),getRedisConn3(),getRedisConn4()]
conns
=
[
getRedisConn2
(),
getRedisConn3
(),
getRedisConn4
()]
for
index
,
conn
in
enumerate
(
conns
):
for
index
,
conn
in
enumerate
(
conns
):
start
=
int
(
time
.
time
())
start
=
int
(
time
.
time
())
num
=
0
num
=
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