You would write a program (probably in Perl) that would strip through the weblog looking for that particular page. Each time your program sees an instance of that request (a
string comparison), it would increment a counter.
I say Perl, because Perl was written for exactly this kind of work and is highly optimized for string matching. Also, all the programs here at work (the ones for this kind of thing) are written in Perl.
This program (in Solaris or Unix) would run on the crontab (a part of the OS that is like the Windows Scheduler). Each day at a set time, the crontab will run your little perl program against the log. The perl program can do whatever you want it to do, including stuffing the results in a database, or emailing you the results.
And yes, all that can be done with a
java program too.
There are also several products you can purchase that will do this sort of thing for you. 'Webtrends' is one that we use at work.
[This message has been edited by Mike Curwen (edited October 21, 2001).]