Hi,
I'm writing a web service that accepts small messages via HTTP POST and sends those messages out to a single port of a UDP server. I'll be sending a massive number of messages and my SLA for delivery is extremely low. Do I need to setup a pool of UDPSockets to handle a large load, or will one connection work? Right now, I'm using std::net::UdpSocket.
I still have a lot to learn about UDP and networking, as well as concurrency in Rust.
Thanks for taking the time to read this,
Jeramy