Possible Duplicate:
close a connection early
How to continue process after responding to ajax request in PHP?
I need to drop connection in ajax actions:
$response = getResponse($params);
echo $response; // don't make user to wait
flushAndDropConnection();
someLongActionsFor5Seconds();
How can I do it?