* Notify the hit tracker that it has an incoming page hit.
*/
private void processHit(Weblog weblog, String url, String referrer) {
HitCountQueue counter = HitCountQueue.getInstance();
counter.processHit(weblog, url, referrer);
}
/**
* Process the incoming request to extract referrer info and pass it on
* to the referrer processing queue for tracking.