上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页
摘要: 通过celery beat可以使用周期性任务的定义。 https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html 周期性任务beat相关设置: https://docs.celeryq.dev/en/stable/userguid 阅读全文
posted @ 2023-10-04 12:07 蕝戀 阅读(119) 评论(0) 推荐(0) 编辑
摘要: https://docs.celeryq.dev/en/stable/userguide/tasks.html 使用app.task装饰器定义 需要通过导入celery app,然后使用@app.task装饰器来定义任务 from celery_app.py import app @app.task 阅读全文
posted @ 2023-10-04 12:07 蕝戀 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 参考: https://docs.celeryq.dev/en/stable/django/first-steps-with-django.html#django-first-steps 这里只记录一些要注意的地方 1、celery主文件 import os from celery import C 阅读全文
posted @ 2023-10-04 12:06 蕝戀 阅读(22) 评论(0) 推荐(0) 编辑
摘要: **任务模块 ** 包含异步任务和定时任务。其中,异步任务通常在业务逻辑中被触发并发往任务队列,而定时任务由 Celery Beat 进程周期性地将任务发往任务队列。 **消息中间件 Broker ** Broker,即为任务调度队列,接收任务生产者发来的消息(即任务),将任务存入队列。Celery 阅读全文
posted @ 2023-10-04 12:05 蕝戀 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 最近在改造一下个人的开发风格。特分享一下。 * 子应用我一般放在apps中,每个不同模块的子应用起不同的名字。startapp后自己移动一下,记得修改一下Appconfig中的name即可。 * 子应用中创建services.py或者如有需要可以创建services模块再细分。所有业务放到servi 阅读全文
posted @ 2023-09-02 10:20 蕝戀 阅读(21) 评论(0) 推荐(0) 编辑
摘要: [https://docs.djangoproject.com/zh-hans/4.2/topics/cache/#top](https://docs.djangoproject.com/zh-hans/4.2/topics/cache/#top) 主要步骤官网也写得很清楚了,包含怎么区使用。 这里 阅读全文
posted @ 2023-08-29 19:34 蕝戀 阅读(362) 评论(0) 推荐(0) 编辑
摘要: `pinia-plugin-persistedstate` 丰富的功能可以使 Pinia Store 的持久化更易配置: - 与 [`vuex-persistedstate`](https://github.com/robinvdvleuten/vuex-persistedstate) 相似的 AP 阅读全文
posted @ 2023-08-13 14:27 蕝戀 阅读(1863) 评论(0) 推荐(0) 编辑
摘要: `store` 是一个用 `reactive` 包装的对象,这意味着不需要在 getters 后面写 `.value`,就像 `setup` 中的 `props` 一样,**如果你写了,我们也不能解构它**: ```Vue ``` 为了从 store 中提取属性时保持其响应性,你需要使用 `stor 阅读全文
posted @ 2023-08-13 14:26 蕝戀 阅读(2937) 评论(0) 推荐(1) 编辑
摘要: 使用pinia的action异步获取频道分类列表数据并渲染到页面中。 接口: GET请求,[http://geek.itheima.net/v1_0/channels](http://geek.itheima.net/v1_0/channels) store/channel.js ```Vue im 阅读全文
posted @ 2023-08-13 14:26 蕝戀 阅读(118) 评论(0) 推荐(0) 编辑
摘要: - 在项目根目录创建store文件夹(此步骤和vuex相同) - 在步骤一的store文件夹下根据不同的用途场景创建单独的store文件(等同于vuex中分模块)、 ![](https://secure2.wostatic.cn/static/7tsMdHuR2i5hy79jHGjHZC/image 阅读全文
posted @ 2023-08-13 14:25 蕝戀 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页