Most Wise Monks
I recently added a post about Modules not going out of scope
click here to view. After looking further into this I believe I made a mistake assuming the problem was to do with Mod_perl.
Further investigations into the code (I didn't write the original code I so please don't slate me too much) I saw that within my session class it created a new object of type community, passing a reference to itself.
sub community {
my $self = shift;
$self->{'community'} = new Community($self);
}
and in the startup of the Community class it does
sub new {
my($class, $session) = @_
my $self = { };
bless($self, $class);
$self->{'session'} = $session;
}
Would I be right in saying this is causing a memory leak ?
I need to be able to access the methods of the session object within the community object, so is there any way of accomplishing this without causing this memory leak ? I know I need to break this circular reference but not sure how to !! I looked on Super Search and found some similar nodes
memory leak however they didn't solve my problem.
I guess this problem is indeed whats causing the error logs to fill up with
Attempt to free unreferenced scalar !
Thanks in advance
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.