Re: [AOLSERVER] globals

2008-03-20 Thread Xavier Bourguignon
Thank you all for the answers, this is exactly what I was looking for. Jean-Fabrice, merci pour ton soutient. On 20/03/2008, Robert Seeger <[EMAIL PROTECTED]> wrote: > Because your question makes it sound like you might be misunderstanding > some things... > > When you set a global variable (glo

Re: [AOLSERVER] globals

2008-03-19 Thread Robert Seeger
Because your question makes it sound like you might be misunderstanding some things... When you set a global variable (global bob ; set bob 1) during the evaluation of your page, that variable exists only in the interpreter that is being used for your page. There are many interpreters (one per

Re: [AOLSERVER] globals

2008-03-19 Thread Bas Scheffers
You can use nsv shared variables, which makes the variable shared by all threads. You can initialize these values in a library Tcl file, like init.tcl. See: http://panoptic.com/wiki/aolserver/Thread-shared_Variables A second (and possibly better) way is to set these values in a section of

Re: [AOLSERVER] globals

2008-03-19 Thread Jean-Fabrice RABAUTE
LISTSERV.AOL.COM > Objet : [AOLSERVER] globals > > Hi, > > Is there a way to set a global which stays in memory for the life of > the server and not just for the life of a request? > > I am asking this because I want to set some server wide configuration > items and I do this

Re: [AOLSERVER] globals

2008-03-19 Thread Don Baccus
On Mar 19, 2008, at 3:21 PM, Xavier Bourguignon wrote: Hi, Is there a way to set a global which stays in memory for the life of the server and not just for the life of a request? nsv_* -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EM

[AOLSERVER] globals

2008-03-19 Thread Xavier Bourguignon
Hi, Is there a way to set a global which stays in memory for the life of the server and not just for the life of a request? I am asking this because I want to set some server wide configuration items and I do this at the moment: global CFG set CFG(ITEM_1) val_1 set CFG(ITEM_2) val_2 But unfort