


Why does ws.send_text("1") execute before load_dataset("beans") in FastAPI?
FastAPI asynchronous programming with await
keywords: ws.send_text()
and load_dataset()
execution order
This article discusses the execution order of ws.send_text()
and load_dataset()
functions when using async
/ await
for asynchronous programming in the FastAPI framework. In the previous code example, there was a misunderstanding: ws.send_text("1")
seems to have to wait for load_dataset("beans")
to complete before execution. In fact, this is not the case.
The key is to understand the role of the await
keyword and the characteristics of load_dataset()
function. await
is only used to wait for the asynchronous operation to complete. ws.send_text()
is an asynchronous operation, so await ws.send_text("1")
will wait for the message to be sent to complete. However, load_dataset("beans")
is a synchronous blocking operation that blocks the current coroutine until the dataset loads.
Code execution process analysis:
-
await ws.accept()
: Wait for the WebSocket connection to be established. -
await ws.send_text("1")
: Send the message "1" asynchronously, and continue to execute after this operation is completed. -
dataset = load_dataset("beans")
: The synchronous blocking operation begins, the program pauses here untilload_dataset("beans")
downloads and loads the dataset from remotely and completes. -
await ws.send_text("2")
: Send the message "2" asynchronously, and you also need to wait for the sending to complete.
Experimental verification and interpretation of results:
The experimental results clearly show that the browser side receives "1" first, and then "2", which is consistent with the blocking characteristic of load_dataset("beans")
. Although ws.send_text("1")
is executed first, the blocking of load_dataset("beans")
causes the sending of "2" to be delayed until the dataset is loaded.
Improved code to implement concurrency:
If load_dataset("beans")
and ws.send_text("1")
are required to execute concurrently, load_dataset("beans")
needs to be transformed into asynchronous operations. This usually requires the use of asynchronous IO libraries, such as aiohttp
, to download data. Here is an improved example (assuming that aiohttp
is used and an asynchronous load_dataset_async
function is implemented):
import asyncio from datetime import datetime from datasets import load_dataset from fastapi import FastAPI, WebSocket from fastapi.responses import HTMLResponse app = FastAPI() # ... (HTML code remains the same) ... @app.websocket("/ws") async def h(ws: WebSocket): await ws.accept() task = asyncio.create_task(load_dataset_async("beans")) # Asynchronously load dataset await ws.send_text(f"1: {datetime.now()}") dataset = await task # Await the dataset loading task print(f"time: {datetime.now()} => dataset: {dataset}") await ws.send_text(f"2: {datetime.now()}") # ... (rest of the code remains the same) ...
Create asynchronous tasks through asyncio.create_task()
, load_dataset_async("beans")
can be executed concurrently in the background without blocking the main coroutine.
Summary: ws.send_text("1")
was executed first in the original code, but the synchronous blocking feature of load_dataset("beans")
determines the execution order of subsequent operations. To achieve concurrency, the data loading operation must be asynchronous.
The above is the detailed content of Why does ws.send_text("1") execute before load_dataset("beans") in FastAPI?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The top ten digital currency exchanges such as Binance, OKX, gate.io have improved their systems, efficient diversified transactions and strict security measures.

The top ten cryptocurrency trading platforms in the world include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi Global, Bitfinex, Bittrex, KuCoin and Poloniex, all of which provide a variety of trading methods and powerful security measures.

The top ten cryptocurrency exchanges in the world in 2025 include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi, Bitfinex, KuCoin, Bittrex and Poloniex, all of which are known for their high trading volume and security.

Bitcoin’s price ranges from $20,000 to $30,000. 1. Bitcoin’s price has fluctuated dramatically since 2009, reaching nearly $20,000 in 2017 and nearly $60,000 in 2021. 2. Prices are affected by factors such as market demand, supply, and macroeconomic environment. 3. Get real-time prices through exchanges, mobile apps and websites. 4. Bitcoin price is highly volatile, driven by market sentiment and external factors. 5. It has a certain relationship with traditional financial markets and is affected by global stock markets, the strength of the US dollar, etc. 6. The long-term trend is bullish, but risks need to be assessed with caution.

Currently ranked among the top ten virtual currency exchanges: 1. Binance, 2. OKX, 3. Gate.io, 4. Coin library, 5. Siren, 6. Huobi Global Station, 7. Bybit, 8. Kucoin, 9. Bitcoin, 10. bit stamp.

Visit Binance official website and check HTTPS and green lock logos to avoid phishing websites, and official applications can also be accessed safely.

Measuring thread performance in C can use the timing tools, performance analysis tools, and custom timers in the standard library. 1. Use the library to measure execution time. 2. Use gprof for performance analysis. The steps include adding the -pg option during compilation, running the program to generate a gmon.out file, and generating a performance report. 3. Use Valgrind's Callgrind module to perform more detailed analysis. The steps include running the program to generate the callgrind.out file and viewing the results using kcachegrind. 4. Custom timers can flexibly measure the execution time of a specific code segment. These methods help to fully understand thread performance and optimize code.

Using the chrono library in C can allow you to control time and time intervals more accurately. Let's explore the charm of this library. C's chrono library is part of the standard library, which provides a modern way to deal with time and time intervals. For programmers who have suffered from time.h and ctime, chrono is undoubtedly a boon. It not only improves the readability and maintainability of the code, but also provides higher accuracy and flexibility. Let's start with the basics. The chrono library mainly includes the following key components: std::chrono::system_clock: represents the system clock, used to obtain the current time. std::chron
