Hi, is it possible to change the resolver.rb file's udp query method to use recvfrom_nonblock instead of recvfrom? This should improve performance for cases where hundreds or thousands of queries are being sent. I'm suggesting this because UDP is stateless in nature and could benefit from such non blocking requests.
Hi, is it possible to change the resolver.rb file's udp query method to use
recvfrom_nonblock
instead ofrecvfrom
? This should improve performance for cases where hundreds or thousands of queries are being sent. I'm suggesting this because UDP is stateless in nature and could benefit from such non blocking requests.