You guys are just too much work! :-)

While I also would use MySQL or Postgresql for something like this it really doesn't matter. How to organize the data doesn't matter either.

Stamp_Guy, I would recommend just focusing on organizing the data so it's most convenient for you to implement the search features you need. If the site gets less than a few hits per second, then with only 500 entries in the database it'll be super fast no matter how you do it. How big is the whole database? If you run mod_perl you could actually use Storable and just load the whole thing into memory every time the file gets updated (although with DB_File and BerkeleyDB you can get either shared memory BerkeleyDB foo and/or the filesystem cache).

But I digress; the point is that all that doesn't matter. Save the fancy design for when you need it. Focus on getting the thing done and implementing the needed functionality.

 - ask

-- 
ask bjoern hansen, http://ask.netcetera.dk/   !try; do();

In reply to Re: Question about properly laying out a database by ask
in thread Question about properly laying out a database by Stamp_Guy

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.