-
In what scenarios where custom server is better to Kestrel?
I wonder if @Tratcher has some ideas. |
Beta Was this translation helpful? Give feedback.
Answered by
gfoidl
Nov 14, 2024
Replies: 1 comment
-
In some 1:1 communication with e.g. micro-controllers Kestrel may be overkill. There a custom TCP-server can be a better fit. When it's 1:n (1 server, n clients), as well as public facing a full-flegded and proven server like Kestrel is -- of course -- more suitable. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ladeak
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In some 1:1 communication with e.g. micro-controllers Kestrel may be overkill. There a custom TCP-server can be a better fit.
When it's 1:n (1 server, n clients), as well as public facing a full-flegded and proven server like Kestrel is -- of course -- more suitable.