Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Perl's pearls

by stefp (Vicar)
on Jan 02, 2002 at 00:10 UTC ( [id://135541]=note: print w/replies, xml ) Need Help??


in reply to Perl's pearls

Unique signatures can be put to all sort of good use. Suppose you want to regularly do a complete backup a farm of workstations. If they run the same OS, these workstations have a lot of files with identical content.

So when you do a backup, you compare the MD5 signature of each file to see if it match signature of the files already stored.

For each workstation, you also need to save the path of each file and all the meta information (ACLs, major-minor for devices...). Files in the same directory when sorted alphabetically share a "prefix string" so you can store only what changes from one file to the next; example:

/var/log/meesages /var/log/messages.1 # add .1 /var/log/meesages.2 # replace "1" by "2"

But you are lazy and know this have been done before anc check out the source of slocate/updatedb. :)

I delibaretely have overlooked many details. I just wanted to give an example where unique signatures could be used.

-- stefp

Log In?
Username:
Password:

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

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

    No recent polls found