Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: how to speed lookups?

by ikegami (Patriarch)
on Nov 11, 2008 at 21:06 UTC ( [id://722996]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $linecontainsbuf{$searchfield} = $line for @validbufs;
    
  2. or download this
    $linecontainsbuf{$searchfield} = $line;
    
  3. or download this
    @fields=split /\'/,$line;
    $searchfield=$fields[1];
    
  4. or download this
    ($searchfield) = $line =~ /^'([^']*)/;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://722996]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-24 00:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found