Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^3: XML::Twig to mysql totally lost

by mirod (Canon)
on Jul 15, 2011 at 07:48 UTC ( [id://914519]=note: print w/replies, xml ) Need Help??


in reply to Re^2: XML::Twig to mysql totally lost
in thread XML::Twig to mysql totally lost

You are probably using a RedHat-based distribution, which includes Scalar::Util without its XS part, and so doesn't provide weaken (see Task::Weaken). The solution would be to re-install Scalar::Util, from CPAN.

Also, I am not sure why you do a $twig->flush; at the end of your code, since you are not outputting the XML at all.

Replies are listed 'Best First'.
Re^4: XML::Twig to mysql totally lost
by bcnagle (Novice) on Jul 15, 2011 at 07:54 UTC
    I am very new to this, from what the tutorial showed, i added it in, i didn't think i needed it either since it's a cron and not outputting but want to keep memory to a minimum consumption. Should i remove it? From what the code shows, is it for certain looping then clearing the previous parse after uploading to the database? want to make sure I'm on the right path.

      The purge in your handler releases the memory by deleting everything but the direct ancestors of the current element. The flush is used when you want to output the transformed XML, by using flush in handlers. Then you need to flush what remains in memory after you're done parsing. At least with old versions of the module, recent versions take care of this automatically.

      So the short answer is: yes you can delete it.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-19 17:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found