Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Should I be using tie for this?

by Aragorn (Curate)
on Jun 16, 2004 at 20:57 UTC ( [id://367425]=note: print w/replies, xml ) Need Help??


in reply to Should I be using tie for this?

Maybe tie is completely the wrong thing to use here. If so what should I do?
It is indeed the wrong thing to do. What Tie::File does is provide an array interface to a file on disk. You can use huge files as an array because Tie::File only holds a part of the file in memory, swapping other parts in and out as necessary.

In your code I see the comment

# I am guess that the script is dying because # this will use up too much virtual memory and # the OS (Window XP) kills the script.
Your first task is to find out why it is taking up so much space. Use the debugger to step through you program and see where it fails.

Just assuming that something is wrong somewhere without determining the exact cause but throwing some code at the problem is not going to fix your program.

Arjen

Replies are listed 'Best First'.
Re^2: Should I be using tie for this?
by Plankton (Vicar) on Jun 16, 2004 at 21:09 UTC
    My memory problem comes from the nature of what my script is trying to do. I am trying to map out all possible moves in Tam's Chinese Peg Game. I didn't think I would have a memory problem. I guess I should of stayed awake in combinatorics. Anyways if you got any suggestion I'd sure appreciate it.

    Plankton: 1% Evil, 99% Hot Gas.

Log In?
Username:
Password:

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

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

    No recent polls found