I want to write perl modules that keep a dbm file (or other disk-based hash) of programs that use them. So I can find out "who uses this code?"
I have perl 5.10 and want to use the "best" dbm for the job.
So, what is the best dbm to use? gdbm?
I think I would store keys along the lines of "__PACKAGE__ $FindBin::Bin/$FindBin::$Script" -> localtime().
And I would remove keys with time values sufficiently old, say older than 2 years.
I need to support concurrency to a degree, as programs that use the same module may run simultaneously. It's okay if a record doesn't get written (I just want to have a way to inspect who is a likely consumer of the code in a module).
It is *not* okay if the dbm gets corrupted or "breaks" the rest of the code.
Maybe I wrap the whole thing in a module that uses caller() to keep track.... "use ModuleAuditor;"
Is there an existing CPAN solution?
Thanks Wise Monks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.