Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Branch has been merged to master. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🚀 Introducing Dirty Workers
I'm excited to share a new experimental feature: Dirty Workers - a way to keep stateful resources (like ML models) loaded in memory while your HTTP workers remain lightweight and responsive.
The Problem
Loading ML models is expensive - often taking several seconds. Traditional worker models either:
The Solution
Dirty workers run alongside your HTTP workers but maintain state between requests:
Try It Out
You can find a concrete example: a text embedding service using sentence-transformers.
Quick start:
Test it:
How It Works
Use Cases
Feedback Welcome
Please test it out and let me know!
Links
cc @gunicorn/maintainers
Beta Was this translation helpful? Give feedback.
All reactions