http://www.perlmonks.org?node_id=907751


in reply to Re^4: Two questions about hashes
in thread Two questions about hashes

Duplicating the data/info is generally not a good thing to do, though sometimes it is convenient.

You have configuration and log files. You have no choice about how these are organized - they are as the respective software requires or produces them.

You are trying to produce some results, which you haven't described but which are likely to be very relevant to answering your questions about how best to organize your data.

Are you storing the data somewhere (i.e. after analyzing the configuration and log files and producing summaries, stats and graphs, are these stored in a database of some sort? Or are you producing them "on-the-fly" each time you want them?

Once you have your data structures, how are you using them?

How is having the nested structure a benefit to what you are doing?

Replies are listed 'Best First'.
Re^6: Two questions about hashes
by i5513 (Pilgrim) on Jun 02, 2011 at 08:52 UTC
    Hi,
    
    I'm saving configuration data in csv, and after I process it to generate useful output and diagrams (with blockdiag |python, I don't know if there is something similar inside perl world|)
    
    I want to sumarize the logs files, I will take a look to logstatd 1. I would like to draw rrdtool graphics with info about how many logs (and of which class) are thought the time. Generally I run this script on the fly to generate stats and (in the future) graphics.
    
    Without nested structured I could not get config/logs info (ehi! I could create classes and objects and play with oo, but I prefer to do it with perl structures)
    
    Thank you for your valuable tips!
    |1| http://search.cpan.org/~vvu/Log-Statistics-0.051/bin/logstatsd
    
    PD: Is there any tip behind "pre / pre " to not use html style in perlmonks comments ?
    

      I've just find an blockdiag alternative in Perl!!

      Graph::Easy::Marpa

      I like more blockdiag syntax, but maybe I test that module, it is a nice idea!