Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
aee2c278
Commit
aee2c278
authored
5 years ago
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change test file
parent
c911f510
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
14 deletions
+15
-14
monitor.py
monitor.py
+15
-14
No files found.
monitor.py
View file @
aee2c278
...
@@ -76,20 +76,21 @@ def write_redis(device_id,cid_list):
...
@@ -76,20 +76,21 @@ def write_redis(device_id,cid_list):
"and c.id = {} and c.tag_type = '3'"
.
format
(
tags
)
"and c.id = {} and c.tag_type = '3'"
.
format
(
tags
)
cursor
.
execute
(
sql
)
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
result
=
cursor
.
fetchall
()
return
result
db
.
close
()
# cids = list(set([i[0] for i in result]))
cids
=
list
(
set
([
i
[
0
]
for
i
in
result
]))
# if len(cids) != 0:
if
len
(
cids
)
!=
0
:
#
# r = redis.StrictRedis.from_url('redis://:ReDis!GmTx*0aN6@172.16.40.133:6379')
r
=
redis
.
StrictRedis
.
from_url
(
'redis://:ReDis!GmTx*0aN6@172.16.40.133:6379'
)
# key = str(device_id) + "_dislike_diary"
key
=
str
(
device_id
)
+
"_dislike_diary"
# if r.exists(key):
if
r
.
exists
(
key
):
# value = eval(r.get(key))
value
=
eval
(
r
.
get
(
key
))
# value.extend(cids)
value
.
extend
(
cids
)
# cids = json.dumps(list(set(value)))
cids
=
json
.
dumps
(
list
(
set
(
value
)))
# r.set(key, json.dumps(cids))
r
.
set
(
key
,
json
.
dumps
(
cids
))
# else:
else
:
# r.set(key, json.dumps(cids))
r
.
set
(
key
,
json
.
dumps
(
cids
))
# r.expire(key, 60*60)
r
.
expire
(
key
,
6
)
return
"good"
except
Exception
as
e
:
except
Exception
as
e
:
print
(
"insert redis fail"
)
print
(
"insert redis fail"
)
...
...
This diff is collapsed.
Click to expand it.
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