Can this libuv library usable for a low latency C userspace application? #4883
varunbenison
started this conversation in
General
Replies: 1 comment
-
|
Yes, you can use this library, and no, it's not only for node.js; observe the large number of OSS projects that use libuv (and unguessable numbers of proprietary code bases.) Is your application going to have a single or few UDP sockets, or many? Event loops (not just libuv) don't shine in the first scenario, you're usually better off recvmsg/sendmsg-ing directly, less overhead. Event loops are fine for the second scenario, though. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We are planning to implement a userspace application using UDP for a low latency datapath application.
Can we use this library? Are there any performance metrics available for this library for different OS?
Is this library only meant for node.js?
Beta Was this translation helpful? Give feedback.
All reactions