Well, I'm wondering if it might be easier for you to use
a database, as opposed to files. What you could for every
classified ad is have a field for (amongst other things)
the ad itself, and the day it was posted. Whenever it is
posted, just use Perl to generate a datestamp and put it
into that database field. Then every evening, you could
have a cron job to dig through the database and expire (delete?)
entries that are 7 days old.

To use a database this way, you wouldn't even be required to
have a full fledged database server running in the background,
you could use something as simple as CSV files if thats what
you want. OTOH, MySQL and Postgres come pretty cheap :-)
-Eric

In reply to Re: File expiration date by andreychek
in thread File expiration date 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.