#Does any organization use axum as your webserver in prodution environment?

7 messages · Page 1 of 1 (latest)

frozen ridge
#

If does, appreciated to share your experience. I want to use it in our production env because we have to use rust('cause we depend on an SDK written in rust), but I don't know whether it is strong enough 🤪
I have some checkpionts such as large file IO、streaming、resume download...

brisk jolt
#

yes, we at cloudflare use it for some services

frozen ridge
whole stirrup
#

Well.... axum doesn't really directly handle any of those things- except kinda streaming, though my experience with streaming in axum has been "it's also pretty do it yourself"

brisk jolt
#

yeah you can do both

for large file io i tend to keep a pool of uring fds for async io, but you are probably fine with tokio::fs

i just have the largest tokio deployment in the world rn, especially for file Io stuff

#

axum is just higher-level stuff on top of hyper

#

you can do range requests and such with it since you have hyper exposed to you