From 074d39fa17152cae218e570f73fe295953d635ff Mon Sep 17 00:00:00 2001 From: Nutchanon Ninyawee Date: Fri, 6 Nov 2020 05:02:07 +0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20incorrect=20Celery=20URLs=20i?= =?UTF-8?q?n=20docs=20(#2100)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/tutorial/background-tasks.md | 2 +- docs/en/docs/tutorial/sql-databases.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/docs/tutorial/background-tasks.md b/docs/en/docs/tutorial/background-tasks.md index 107fe60c7..9b5e218e1 100644 --- a/docs/en/docs/tutorial/background-tasks.md +++ b/docs/en/docs/tutorial/background-tasks.md @@ -81,7 +81,7 @@ You can see more details in Celery. +If you need to perform heavy background computation and you don't necessarily need it to be run by the same process (for example, you don't need to share memory, variables, etc), you might benefit from using other bigger tools like Celery. They tend to require more complex configurations, a message/job queue manager, like RabbitMQ or Redis, but they allow you to run background tasks in multiple processes, and especially, in multiple servers. diff --git a/docs/en/docs/tutorial/sql-databases.md b/docs/en/docs/tutorial/sql-databases.md index 59eb6a4fb..05b2fee32 100644 --- a/docs/en/docs/tutorial/sql-databases.md +++ b/docs/en/docs/tutorial/sql-databases.md @@ -235,7 +235,7 @@ Now let's check the file `sql_app/schemas.py`. To avoid confusion between the SQLAlchemy *models* and the Pydantic *models*, we will have the file `models.py` with the SQLAlchemy models, and the file `schemas.py` with the Pydantic models. These Pydantic models define more or less a "schema" (a valid data shape). - + So this will help us avoiding confusion while using both. ### Create initial Pydantic *models* / schemas @@ -470,7 +470,7 @@ Our dependency will create a new SQLAlchemy `SessionLocal` that will be used in We put the creation of the `SessionLocal()` and handling of the requests in a `try` block. And then we close it in the `finally` block. - + This way we make sure the database session is always closed after the request. Even if there was an exception while processing the request. But you can't raise another exception from the exit code (after `yield`). See more in [Dependencies with `yield` and `HTTPException`](./dependencies/dependencies-with-yield.md#dependencies-with-yield-and-httpexception){.internal-link target=_blank} @@ -553,7 +553,7 @@ And as the code related to SQLAlchemy and the SQLAlchemy models lives in separat The same way, you would be able to use the same SQLAlchemy models and utilities in other parts of your code that are not related to **FastAPI**. -For example, in a background task worker with Celery, RQ, or ARQ. +For example, in a background task worker with Celery, RQ, or ARQ. ## Review all the files @@ -648,7 +648,7 @@ The middleware we'll add (just a function) will create a new SQLAlchemy `Session We put the creation of the `SessionLocal()` and handling of the requests in a `try` block. And then we close it in the `finally` block. - + This way we make sure the database session is always closed after the request. Even if there was an exception while processing the request. ### About `request.state`