Actix: a small, pragmatic, and fast Rust web framework
11–20 of 125 posts
Re: Actix: a small, pragmatic, and fast Rust web framework
#12We use it at Sentry for one of our services and the experience has been great. The best part by far is that you can benefit from async io handling without having to write every one of your views in an async fashion. All the async complexity is offloaded into the extractors and the response sending.
Re: Actix: a small, pragmatic, and fast Rust web framework
#13We use it at Sentry for one of our services and the experience has been great. The best part by far is that you can benefit from async io handling without having to write every one of your views in an async fashion. All the async complexity is offloaded into the extractors and the response sending.
Re: Actix: a small, pragmatic, and fast Rust web framework
#14It appears that Actix's primary author works for Microsoft, does anyone know if Microsoft is using it internally for anything?
Re: Actix: a small, pragmatic, and fast Rust web framework
#15Re: Actix: a small, pragmatic, and fast Rust web framework
#16It appears that Actix's primary author works for Microsoft, does anyone know if Microsoft is using it internally for anything?
we use actix. but that is all i can share :)
Re: Actix: a small, pragmatic, and fast Rust web framework
#17Re: Actix: a small, pragmatic, and fast Rust web framework
#18Re: Actix: a small, pragmatic, and fast Rust web framework
#19Browsing thru Actix guide ( https://actix.rs/actix/guide/ ), I didn't find any explanation regarding what will happen when actor(s) crashes or how crashes[1] are being handled? http://wiki.c2.com/?LetItCrash
Re: Actix: a small, pragmatic, and fast Rust web framework
#20We use it at Sentry for one of our services and the experience has been great. The best part by far is that you can benefit from async io handling without having to write every one of your views in an async fashion. All the async complexity is offloaded into the extractors and the response sending.
Is this a new service built from scratch in Actix, or did you migrate the service from something else?