1
0
mirror of https://github.com/actix/actix-website synced 2025-02-02 04:09:06 +01:00

Server.md: Add line break

This commit is contained in:
Rotem Yaari 2020-03-17 16:41:27 +02:00
parent cb3f5f561a
commit 8df8d1e151

View File

@ -62,6 +62,7 @@ fn my_handler() -> impl Responder {
"response"
}
```
For this reason, any long, non-cpu-bound operation (e.g. I/O, database operations, etc.) should be
expressed as futures or asynchronous functions. Async handlers get executed concurrently by worker
threads and thus don't block execution: