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

I am testing the trick also in mod_perl, under Worker MPM. So, yes, I am definitely using threads.

So you're not using threads, the perl module

Replies are listed 'Best First'.
Re^8: symbols, scope, and mod_perl
by acanfora (Novice) on Oct 01, 2012 at 12:23 UTC
    Did you see use threads; anywhere? :)

      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.