in reply to Re^4: csv parsing with multiple missing values/multiple commas
in thread csv parsing with multiple missing values/multiple commas

I couldn't get the callbacks to work with Parse::CSV. I think it only works with getline not fetch.
poj

Replies are listed 'Best First'.
Re^6: csv parsing with multiple missing values/multiple commas
by f77coder (Beadle) on Aug 02, 2014 at 23:24 UTC

    Can I thread/fork this code safely?

      You can't fork/thread any code safely without putting some thought into it. Multiple processes handling the same data always requires some synchronization. What exactly do you want to achieve?

        eventually i'd put the code on cluster and see how it runs. the file sizes i'm dealing with are >16Gb which is more than 8Gb on my system.

        thanks, appreciate the help.