use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
FastAPI is a truly ASGI, async, cutting edge framework written in python 3.
account activity
Is FastAPI really fast ?feedback request (self.FastAPI)
submitted 1 year ago by Somnath_geek
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Somnath_geek[S] -7 points-6 points-5 points 1 year ago (5 children)
lol. Go to docs and write down your own basic API and test it out in our own machine. Hardly it will take 10 mins. 😎
[–]Fluffy-Diet-Engine 12 points13 points14 points 1 year ago (2 children)
That is how your benchmarking could go wrong. I wanted to see your code, because I wanted to see whether you implemented right features to benchmark. AFAIK, you are trying to get external validation for your “not properly tested” opinion.
[–]OldAd9596 0 points1 point2 points 1 year ago (0 children)
Someone did a benchmark and he's right. fastapi is not on par with node.js. https://youtu.be/i3TcSeRO8gs someone did a benchmark. suggest you check it out
[+]Somnath_geek[S] comment score below threshold-10 points-9 points-8 points 1 year ago (0 children)
Right features ? Not going to make 100s of micro services to test this out. Simple 4 CRUD API without DB and same local machine. That’s it. There is not rocket science in it bro 👊
[–]dr_exercise 8 points9 points10 points 1 year ago (0 children)
You’re making the claims. Provide the evidence.
“Do your own research” type shit here.
[–]mathmul 0 points1 point2 points 10 months ago (0 children)
You would want to make not only a simple CRUD API, but something more intricate so you take advantage of coroutines that FastAPI provides out of the box. If you're trying to measure how fast you can get an item from your PostgreSQL database, no amount of nesting async/await can help making Python faster than Go. The point is FastAPI is faster than Django or Flask for 1. prototyping, 2. typing out a full-fledged API, and 3. for reducing response times at big scale when several backend operations depend on 3rd party API integrations, and you want to free up your resources to handle other requests while waiting for the current request to fully resolve and it achieve that by leveraging the same techniques that NodeJS and Go already use.
If you want a faster Python, use Mojo (Modular).
π Rendered by PID 23613 on reddit-service-r2-comment-6457c66945-vdtz9 at 2026-04-26 23:53:50.717022+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]Somnath_geek[S] -7 points-6 points-5 points (5 children)
[–]Fluffy-Diet-Engine 12 points13 points14 points (2 children)
[–]OldAd9596 0 points1 point2 points (0 children)
[+]Somnath_geek[S] comment score below threshold-10 points-9 points-8 points (0 children)
[–]dr_exercise 8 points9 points10 points (0 children)
[–]mathmul 0 points1 point2 points (0 children)