Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I'd probably try something like this (untested):
#!/usr/bin/perl -w use strict; use IO::File; use Text::CSV_XS; { my $fh = new IO::File ("<$path/$database") or die "Can't open file: $!\n"; my $csv = new Text::CSV_XS ({ sep_char => '|' }); while ( my ($a,$b,$c,$d,$e,$f) = @{$csv->getline($fh)} ) { if ( -1 != index($s, $d) && -1 != index($r, $e) && -1 != index($m, + $f) ){ print "$b\n"; if ($c eq "Y"){ print "$a - tal\n"; } elsif ($p eq "Y"){ print "$e"; } } } }

I used index, since it's faster than a regex, generally, and you seemed to be simply searching for a substring, not an actual regex. Also, Text::CSV_XS is XS (compiled C) which is usually quite fast (faster than Perl, at any rate).


Update: As merlyn pointed out recently, index need not be faster than a regex (thanks for pointing that out, blakem).


[ ar0n -- want job (boston) ]


In reply to (ar0n) Re: Faster Flat File by ar0n
in thread Faster Flat File by Buzz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-24 17:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found