Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Re: Eating RAM problem

by TheFifthDeuce (Novice)
on Aug 01, 2002 at 18:08 UTC ( [id://186872]=note: print w/replies, xml ) Need Help??


in reply to Re: Eating RAM problem
in thread Eating RAM problem

Chromatic, I need to get each element into an array. If the file size is 2 million bytes, then the array should have 2 million elements. How can I do that without draining RAM? Using your sub I get:
@blah = by_string($file); $i = 0; foreach(@blah){ $i ++; } print $i; # Prints 1... not what I am looking for
Thanks

Replies are listed 'Best First'.
Re: Re: Re: Eating RAM problem
by rsteinke (Scribe) on Aug 01, 2002 at 18:50 UTC

    Then use length $blah[0] instead. You can do anything with strings that you can do with an array of 0's and 1's. The syntax is just a little different.

    Ron Steinke rsteinke@w-link.net
Re: Re: Re: Eating RAM problem
by I0 (Priest) on Aug 02, 2002 at 07:03 UTC
    Why do you need to get each element into an array?
    Could you use Tie::VecArray; ?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-25 14:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found