RE: High performance UDP Listener?
From: Dan Kelley (DanKelley_at_discussions.microsoft.com)
Date: 10/01/04
- Previous message: Jonas Pohlandt: "Changing selectable values for a property in design mode"
- In reply to: gregory_may: "High performance UDP Listener?"
- Next in thread: gregory_may: "Re: High performance UDP Listener?"
- Reply: gregory_may: "Re: High performance UDP Listener?"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 1 Oct 2004 00:59:02 -0700
I did something very similar before with MSMQ. Does it take much time to
process the incoming UDP requests? If not, you could listen on one thread, as
you said, and simply pass the request to the ThreadPool, using the
QueueUserWorkItem method. If it does take a long time to process a request, I
would not advise using the threadpool as it could become starved quickly. In
this scenario, either create new Thread objects manually (which is the quick
option, but could degrade performance if you have too many threads running at
once, leading to too many context switches), or grab the source for one of
the many custom thread pools out there.
Hope this helps.
Dan
"gregory_may" wrote:
> I am working on an application that needs a high performance UDP Listener.
>
> Currently I have one thread listening to the network and handling the
> requests. Currently I need about 70 MS between packets so I dont drop
> anything.
>
> I think I need one thread listening to the network and another thread
> handling requests. I dont know if I would need an "array queue" to hold
> the messages or if I could just use the RaiseEvent signal to notify the
> worker thread to process the inbound message.
>
> Anyone seen a code sample/article that could help me out?
>
> g.
>
>
>
- Previous message: Jonas Pohlandt: "Changing selectable values for a property in design mode"
- In reply to: gregory_may: "High performance UDP Listener?"
- Next in thread: gregory_may: "Re: High performance UDP Listener?"
- Reply: gregory_may: "Re: High performance UDP Listener?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|