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 (global

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

Re: [AOLSERVER] globals

2008-03-19 Thread Jean-Fabrice RABAUTE
nsv_set / nsv_get / nsv_array etc and ns_share as well (not sure if ns_share is standard or a module). Best Regards / Cordialement Jean-Fabrice Rabaute CORE SERVICES :: Software/Web development Consulting services http://www.core-services.fr - {Enjoy the future

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 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