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!


In reply to best dbm for small dictionaries? write locking or concurrency needed by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.