Thanks! Been hoping for this for the past few years... do share the videos so that more people know about it!
@prashlovessamosa9 ай бұрын
Very underrated channel Got my sub keep creating awesome stuff buddy.
@core_dump9 ай бұрын
Thanks for the sub! Do share the content with you peers
@ClearerThanMud9 ай бұрын
Just what I wanted to know, and very well presented. Subscribed!
@core_dump9 ай бұрын
Thanks!
@realsong-fake9 ай бұрын
In this case it's more about data race free than memory safety. It's easy to share memory safely between multiple processes but proper synchronization is extremely hard. Rust offers an OS native thread based data race free concurrency solution by default. Which is perfect for cloudflare's use case.
@core_dump9 ай бұрын
It makes sense now that you mentioned it. although, they focussed on memory safety but concurrency is another factor for sure.
@TheMrSnuSnu9 ай бұрын
thanks for your videos, I always watch them to keep up with tech news
@core_dump9 ай бұрын
Thanks!!
@RootsterAnon9 ай бұрын
I need to see example for simple reverse proxy that serves app over https. there are no docs for that, maybe you could show us?
@yuridelossantos5698 ай бұрын
can pingora be used to create web server or like fastapi, something like that?
@core_dump8 ай бұрын
It iss not meeant for that, its meant for creating proxies. If you are looking for a web server for rust, you can try something like: rocket.rs/