in reply to Re^5: 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.

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

    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

      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