Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: SSI PERL wisdom needed

by larryl (Monk)
on Mar 11, 2001 at 04:54 UTC ( [id://63555]=note: print w/replies, xml ) Need Help??


in reply to SSI PERL wisdom needed

You might want to take a look at File::CounterFile by Gisle Aas which keeps file-based counters like yours. It uses file locking to handle multiple processes trying to modify the file at the same time, which will be an issue for you because you could have multiple simultaneous HTTP requests going on.

It's very easy to use. This will open the file, increment the value, and return you the updated value:

use File::CounterFile; $c = new File::CounterFile $data_file, $initial_value; $raw_data = $c->inc;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://63555]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-20 02:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found