in reply to Re^7: symbols, scope, and mod_perl
in thread symbols, scope, and mod_perl

Did you see use threads; anywhere? :)

Replies are listed 'Best First'.
Re^9: symbols, scope, and mod_perl
by Anonymous Monk on Oct 01, 2012 at 12:39 UTC

    No, but you did talk about it

    To be more precise, I am actually allocating the object on thread symbol table, but under mod_perl objects in "main" threads functions are persistent between calls. So it gets messed on subsequent calls

    So you're using a threaded apache, big deal, each perl interpreter instance is still independent of each other-- no threading issue

      Actually the issue is about object persistence. I put too much implicit meanings in my initial post, sorry for this.