I am looking for an optimum sleep value to receive data from a non-blocking socket. E.g:

while True:
    data=s.recv(1024)
    if not data:
        time.sleep(10) #10ms
    else:
        pass #...

No sleep would lead into 100% CPU usage, so any idea how to get the best CPU Usage and bandwith? How long has a sleep to be so the CPU can do a thread switch?

Btw, does it make sense to set the buffer of the socket via SO_SNDBUF/SO_RECVBUF and set TCP_NODELAY or shouldn't they be combined?

link|improve this question
Unlearn the pattern. Now! Forget that a function sleep() ever existed. For each use of sleep() there is another, more appropriate method. – Jan Hudec Sep 13 '11 at 9:17
feedback

3 Answers

up vote 2 down vote accepted

You shouldn't be doing that yourself. Use the select call, with a timeout if you need your code to wake up every so often even if no data was received.

BTW, TCP_NODELAY is of the sending side, won't influence your reads.

link|improve this answer
In my case the socket switchs read/write calls. recv/send/send/send/recv/recv/... – Mister X Sep 13 '11 at 9:23
feedback

If you plan to use sleep(), why don't you just use blocking sockets?

link|improve this answer
feedback

Use select. It will basically pause the program and wake it up when there is data available on the socket.

link|improve this answer
I thought when I use select(...) the data can be gone in a nonblocking socket when I return and try to receive it. – Mister X Sep 13 '11 at 9:24
1  
@Mister No. Where did you get that idea? You cannot lose data via any API to TCP/IP unless you perpetrate programming errors. – EJP Sep 13 '11 at 10:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.