摘要:
https://gitee.com/bitterteaer/scrapy-learn.git 在代码中运行scrapy的方法 @https://www.cnblogs.com/kakashiS/p/7475742.html 官方文档给出了两个scrapy工具: scrapy.crawler.Craw 阅读全文
摘要:
https://gitee.com/bitterteaer/celery-learn.git Celery的架构由三部分组成,消息中间件(message broker),任务执行单元(worker)和任务执行结果存储(task result store)组成。 基本使用 celery_task im 阅读全文
摘要:
### 安装 ![image](https://img2023.cnblogs.com/blog/2450939/202307/2450939-20230720152023993-580627223.png) ### 使用 ```js export default { debugMeter: asy 阅读全文
摘要:
```python created_at = Column(Integer, nullable=False, default=lambda: int(time.time())) ``` 使用lambda即可使其实时生成,如果不使用lambda,则无法实时获取时间,只会记录第一次的时间 阅读全文
摘要:
### 场景复原(这份代码可以和我之前的业务产生同样的效果) ```python async def task(): print("1......") time.sleep(5) print("ok") @router.post("/1") async def crate(background_ta 阅读全文
摘要:
GOPROXY=https://goproxy.cn,direct 阅读全文
摘要:
```python from fastapi.security import APIKeyHeader api_key_header = APIKeyHeader(name="api_key") @app.get("/items/{item_id}", response_model=Item) de 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/2450939/202307/2450939-20230709002500545-1550489036.png) 阅读全文
摘要:
### 如果我使用此配置启动部署(即先启动服务,然后启动部署)则 pod 在启动期间会失败。 在日志中,我可以找到以下消息: ```shell *************************** APPLICATION FAILED TO START ********************** 阅读全文
摘要:
### 问题 设想这样一个场景:通过flask启动了一个REST服务,该服务需要访问数据库,且每天被定时请求一次(除此之外无请求)。 按照上一节的讨论,由于两次请求间隔(24小时)超过了关闭阈值(8小时),因此在下一次发送请求时,会报出Lost connection的错误。 ### 解决方案 ``` 阅读全文