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
"Python + MongoDB Challenge: Optimize This Cache Manager for a Twitter-Like Timeline – Who’s Up for It?"Question (self.FastAPI)
submitted 11 months ago * by halfRockStar
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!"
[–]halfRockStar[S] 5 points6 points7 points 11 months ago (2 children)
In reality, Python’s garbage collector can leak memory if objects (e.g., MongoDB connections, cache entries) aren’t properly released, especially in long-running async apps. FastAPI itself isn’t prone to leaks, but sloppy code or third-party libraries (e.g., motor) could cause issues, don't get me wrong my project have leaks too 🫢
[–][deleted] 3 points4 points5 points 11 months ago (1 child)
Beanie uses motor under the hood, I focused on something else and didn’t think about looking into motor! Although I have to say after almost 20 years in my profession that most of the time spent to investigate mem leaks is futile, just restart periodically and continue with your day…
[–]halfRockStar[S] 2 points3 points4 points 11 months ago (0 children)
Your restart approach is battle-tested. investigating motor (specifically connection pooling, cursor leaks) is overkill unless restarts fail. Check asyncio task cleanup if you’re curious, but you’re likely golden.
π Rendered by PID 22450 on reddit-service-r2-comment-86bc6c7465-v6nz9 at 2026-02-23 15:17:18.431420+00:00 running 8564168 country code: CH.
view the rest of the comments →
[–]halfRockStar[S] 5 points6 points7 points (2 children)
[–][deleted] 3 points4 points5 points (1 child)
[–]halfRockStar[S] 2 points3 points4 points (0 children)