Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将SocketAsyncEventArgs用于接收市场报价的客户端应用程序是否是一个好的解决方案?还是传统的 while(true) 更好?
我正在寻找最快的解决方案,以便每秒接收数千条消息。
对于大量消息传递,SocketAsyncEventArgs最好。MS 做了很多工作来使 API 尽可能减少内存抖动,因此与其他方法相比,GC 需要触发的频率要低得多。IIRC 它是 Silverlight 唯一支持的 API,所以如果有可能,那么它是您唯一的选择。
SocketAsyncEventArgs