
actually the "if" block is to perform some sort of non-critical process, i m dealing with the online advertising, the situation like this
- once the visitor click on the banner, it wil trigger the script click.pl?aid=123..., then our sys wil track, then add a record for aid=123 to db after some validation on ip and certain rules. then continue let the visitor proceed to the next line of the code.
- but becoz the click.pl would be trigger quite offtenly, and we stil hope the visitor can continue proceed to the next line, means the "if" block NEVER block the visitor from proceed in whatever situation. but an "amount" of waiting time there when the click.pl trigger many times in a short amount of time.
so we hope to switch the current validation to background process instead of foreground
Thanks