[PHP] Code execution speed

2006-11-06 Thread Eric
I was looking for some ways to speed up the execution of my code. Im 
connecting to and displaying information from a newsgroup via sockets. 
The socket_recv's are slowing it down. What things other than the 
socket_recv's can I change to make the code faster. Just general tips. 
Thanks in advance.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Code execution speed

2006-11-06 Thread Curt Zirzow

On 11/6/06, Eric [EMAIL PROTECTED] wrote:

I was looking for some ways to speed up the execution of my code. Im
connecting to and displaying information from a newsgroup via sockets.
The socket_recv's are slowing it down. What things other than the
socket_recv's can I change to make the code faster. Just general tips.
Thanks in advance.


Cache what you recieve by the message id in a database or something,
if it exists in the database use that, otherwise fetch it via the
socket.

I can't think of a more general way to speed things up.

Curt.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Code execution speed

2006-11-06 Thread clive

Eric wrote:
I was looking for some ways to speed up the execution of my code. Im 
connecting to and displaying information from a newsgroup via sockets. 
The socket_recv's are slowing it down. What things other than the 
socket_recv's can I change to make the code faster. Just general tips. 
Thanks in advance.




Also have a look at opening a socket in non-blocking mode.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php