Hi, monks!

I'm generating student accounts at a community college. I read in daily flat-file enrolment and fee data and then adjust accounts accordingly. Unfortunatly, this is only instant-in-time data and it doesn't help me very much for complicated situations, like name changes and missed-a-day problems and whatnot. So, I'm writing a new system that contains history as well as the right-now data. This means I'm going to have a lot more data and I'm going to search it in a lot more ways. I have a prototype that I wrote several years ago, and it's durn slow and I'd like this one to be faster. I figure I could use a database or maybe just dbm files, or maybe a flat file really is fine, but I had other problems. So, I want to compare some different ways of storing and retrieving this stuff.

My problem is, I can't think of a way to test and benchmark without writing a complete app in each case. I'd like to benchmark with a test rig of some kind, but I don't know how to make a test rig that would be accurate without just building the whole app.

Any advice?

Thanks!
--Pileofrogs


In reply to Benchmarking Strategy? by pileofrogs

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.