update ignore & update sort

This commit is contained in:
RainSun 2020-02-28 17:21:06 +08:00
parent 6995306195
commit 0fc49f6333
6 changed files with 5 additions and 5 deletions

4
.gitignore vendored
View File

@ -1,4 +1,2 @@
lib/__pycache__/allFunction.cpython-37.pyc
lib/__pycache__/crawler.cpython-37.pyc
lib/__pycache__/mail.cpython-37.pyc
__pycache__
.vscode/settings.json

View File

@ -28,6 +28,8 @@ gunicorn coc:app -c gunicorn.conf.py
pstree -ap|grep gunicorn
// 关闭某服务
kill (pid)
//关闭venv
deactivate
```
## 错误代码一览

Binary file not shown.

Binary file not shown.

View File

@ -111,9 +111,9 @@ def getRank():
time_rank = []
count_rank = []
try:
for i in col('rank').find({},{"_id":0}).sort([("time",1)]).limit(10):
for i in col('rank').find({},{"_id":0}).sort([("time",1),("count",1)]).limit(10):
time_rank.append(i)
for i in col('rank').find({},{"_id":0}).sort([("count",1)]).limit(10):
for i in col('rank').find({},{"_id":0}).sort([("count",1),("time",1)]).limit(10):
count_rank.append(i)
except Exception as e:
print(e)