Yes... you definately want to wait to check the domains until later.
gethostbyaddr() (or any dns lookup) can be extremely slow...

Also, you're doing it *every* time even for the same visitor... if you
waited until you were parsing the log files you could do it *once* per
visitor (by caching the results of the first lookup).

-p

On Tue, 19 Feb 2002, SED wrote:

> I'm using the gethostbyaddr() function in each webpage on my server to
> monitor the users. Today I noticed that it causes a very slow speed but
> before it was ok.
>
> Is it commonly bad choise to use it like I do?
> Should I rather check the host afterwards e.g. when I'm viewing the
> log-database?
>
> Regards,
> Sumarlidi Einar Dadason
>
> SED - Graphic Design
> ----------------------------------
> Tel.          4615501
> GSM           8960376
> E-mail        [EMAIL PROTECTED]
> Website:      www.sed.is
> ----------------------------------
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


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

Reply via email to