在 HFT 交易应用程序中,我需要从 udp 多播套接字接收数据。唯一的要求是延迟——这非常重要,以至于我可以“使用”一个 CPU 内核。旋转什么的都可以。这是我目前在 Windows 中所拥有的:
void Receiver::ThreadMethod() {
//UINT32 seq;
sockaddr_in Sender;
int SenderAddrSize = sizeof(Sender);
while (stayConnected) {
int res=recvfrom(socketId,buf,sizeof(char) * RECEIVE_BUFFER_SIZE,0, (SOCKADDR *)& Sender, &SenderAddrSize);
if (res == SOCKET_ERROR) {
printf("recvfrom failed, WSAGetLastError: %d\n", WSAGetLastError());
continue;
}
//seq = *(UINT32*)buf;
//printf("%12s:seq=%6d:len=%4d\n", inet_ntoa(Sender.sin_addr), seq, res);
unsigned char* buf2 = reinterpret_cast<unsigned char*>(buf);
feed->ProcessMessage(res, buf2);
}
}
recvfrom
块,所以它可能会很慢(或者我错了?)。我应该为 Linux 重写它并实现最佳延迟。我需要为每个线程处理一个套接字,所以我认为我不应该使用epoll
它,因为它设计得更多来处理许多套接字。我应该使用什么?
upd我发现了类似的问题Low-latency read of UDP port