上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 106 下一页
摘要: 1.安装 supervisor pip install supervisor 2.创建supervisor配置文件,命令如下: 进入项目文件 echo_supervisord_conf > supervisord.conf vim supervisord.conf 在末尾输入: [program:c 阅读全文
posted @ 2020-10-14 13:17 小学弟- 阅读(313) 评论(0) 推荐(0)
摘要: 一、目录结构 二、创建worker文件夹 __init__.py # -*- coding:utf-8 -*-import osfrom celery import Celery, platforms# elery不能root用户启动解决(C_FORCE_ROOT environment)platf 阅读全文
posted @ 2020-10-13 19:20 小学弟- 阅读(138) 评论(0) 推荐(0)
摘要: Celery - 定时任务 定时任务 Celery 中启动定时任务有两种方式,(1)在配置文件中指定;(2)在程序中指定。 # cele.py import celery app = celery.Celery('cele', broker='redis://localhost:6379') @ap 阅读全文
posted @ 2020-10-13 16:48 小学弟- 阅读(291) 评论(0) 推荐(0)
摘要: 目录结构 第一步 celery_task 里面的celery文件 import time from celery import Celery # celery from celery.schedules import crontab # 将此文件celery启动 windows celery wor 阅读全文
posted @ 2020-10-13 16:18 小学弟- 阅读(381) 评论(2) 推荐(0)
摘要: 在windows上 使用celery 报错 在windows上 使用celery 报错 ValueError: not enough values to unpack (expected 3, got 0) 原因是官方不支持在windows上使用,但是仍然可以用来测试 安装gevent即可 pip 阅读全文
posted @ 2020-10-13 13:28 小学弟- 阅读(210) 评论(0) 推荐(0)
摘要: 本文链接:https://blog.csdn.net/qq_35014708/article/details/89458175 阅读全文
posted @ 2020-10-12 14:50 小学弟- 阅读(299) 评论(0) 推荐(0)
摘要: 在js中将map对象转换成json //msp转objectlet obj= Object.create(null); for (let[k,v] of map) { obj[k] = v; }//object转json JSON.stringify(obj); js对cookie的操作 2020- 阅读全文
posted @ 2020-10-12 14:48 小学弟- 阅读(2356) 评论(0) 推荐(0)
摘要: js获取cookie数据并发送给服务端 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <script type="text/javascript"> functi 阅读全文
posted @ 2020-10-12 14:46 小学弟- 阅读(412) 评论(0) 推荐(0)
摘要: linux中用iptables开启指定端口 centos默认开启的端口只有22端口,专供于SSH服务,其他端口都需要自行开启. 1.修改/etc/sysconfig/iptables文件,增加如下一行: -A INPUT -m state --state NEW -m tcp -p tcp --dp 阅读全文
posted @ 2020-10-09 18:19 小学弟- 阅读(935) 评论(0) 推荐(0)
摘要: Python定时任务框架apscheduler 本文链接:https://blog.csdn.net/somezz/article/details/83104368 说到定时任务,你会想起 linux 自带的 crontab ,windows 自带的任务计划,都可以实现守时任务。没错,操作系统基本都 阅读全文
posted @ 2020-09-27 17:38 小学弟- 阅读(566) 评论(0) 推荐(1)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 106 下一页