If you want the fastest development time solution, then continue with the RAM disk solution.
If you want a more robust and scalable solution, then I agree with the others that suggest that you start migrating to a DB centric solution.
I use to work for a major vendor of web log processing software, and our solution was definitely a DB backend.

Here is a short list of potential bottlenecks when using DB’s to import web logs, just as a FYI.

Import speed
Import munging (filtering out invalid web log entries etc.)
DB table size growth
Managing DB access from a Data Warehouse (DW) if you keep your logs for an extended period

The up sides to a DB centric solution for web log processing are:

Scalability
Accessibility (Many different methods to read the data)
Flexibility (Integrate web log DB with other DB’s like sales, surveys, email campaigns)
Analysis and Data Mining (Lots of COTS {Commercial off the Shelf} software available)

Richard

There are three types of people in this world, those that can count and those that cannot. Anon


In reply to Re: Sharing a 300MB variable. by richardX
in thread Sharing a 300MB variable. by foxops

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.