in reply to Re: performance issues
in thread performance issues

I use the data to generate ngrams. Basically, whenever I find a given string in the first part of the line (before the \t), I put the second into an array. After having gone through all the lines, I generate ngrams for the array.

Replies are listed 'Best First'.
Re^3: performance issues
by MidLifeXis (Monsignor) on Jan 27, 2009 at 19:50 UTC

    Is this something where using DBM::Deep to store the resulting data structure for reader use would make sense?

    --MidLifeXis