this post was submitted on 31 Dec 2025
19 points (88.0% liked)

Python

7818 readers
18 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] rimu@piefed.social 4 points 2 months ago (3 children)

Wow, very interesting to see Sync doing so well in comparison!

But I thought a lot of the advantage of async is it's ability to handle many concurrent requests? What happens if you run the same tests but this time with 100 requests in parallel?

[–] solrize@lemmy.ml 2 points 2 months ago (2 children)

I've run python progs with 1000+ threads and it's fine. 10k might be harder. Async is overrated. Erlang and elixir are preferable.

overrated or not the choice is between sync or async drivers. Actually there is no choice, just an illusion of choice.

So async or async ... choose. Without the web router running multithreaded, concurrency will have minimal effect. But everything is step by step. freethreaded hasn't been out for very long.

[–] hackeryarn@lemmy.world 0 points 2 months ago* (last edited 2 months ago)

Only reliable web server is an Erlang web server.

[–] Ephera@lemmy.ml 1 points 2 months ago (1 children)

I mean, it's a bit of a weird comparison to begin with. Web servers were always able to parallelize without async, because they'd just spawn a new thread per request. The real advantage of async is programs where working with threads isn't as trivial...

[–] hackeryarn@lemmy.world 2 points 2 months ago

I totally agree with you. This article was really a response to a lot of hype around async web servers in Python.

I kind of knew what to expect, but wanted to throw real numbers against it. I was surprised to see a 10x slowdown with the async switch in Django.

[–] hackeryarn@lemmy.world 1 points 2 months ago (1 children)

This is running with concurrent requests. 64 workers firing request to be exact.

[–] rimu@piefed.social 1 points 2 months ago

That sounds like plenty. Cool!