[AOLSERVER] nsv performance

2003-02-18 Thread Bas Scheffers
Hi, I hope someone with a better understanding of the inner workings of nsv can answer this for me: I would like to store application settings in the database, then on startup, load these into memory and be able to update those on the fly afterwards. nsv sets come into mind to do that. Would

Re: [AOLSERVER] nsv performance

2003-02-18 Thread Tim Moss
Bas, fancy meeting you *here* ;-) I've recently nabbed the session management code from OpenACS and got this working on vanilla AOLserver. This uses nsv's to store stuff in memory and periodically writes back to the database. I can send you what I've got if you like. Take a look at the OpenACS

[AOLSERVER] remove

2003-02-18 Thread Harkness, Stephen T
Please remove me from this list

[AOLSERVER] AOLSERVER REMOVE

2003-02-18 Thread Gary Novay
PLEASE remove me from this mailing list. thanks...gary novay [EMAIL PROTECTED]

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Jim Davidson
In a message dated 2/17/2003 7:04:15 PM Eastern Standard Time, [EMAIL PROTECTED] writes: On Mon, Feb 17, 2003 at 06:44:05PM -0500, Andrew Piskorski wrote: Also, the Tcl procs I've defined don't seem to work in non-connection threads either. I definitely get "invalid command name" errors both in

Re: [AOLSERVER] Weird expr error

2003-02-18 Thread Wolfgang Winkler
It is the nsjava module after all. If I comment it out in the server tcl file everything works fine. I think I'll have to rename this thread and post my question again! On Tuesday 18 February 2003 17:59, you wrote: I know what you mean, here in europe we encounter some strange behaviour in

[AOLSERVER] Remove

2003-02-18 Thread Patricia A. Hall
Please remove me from your list. Thanks

[AOLSERVER] Leaving the list

2003-02-18 Thread Nathan Folkman
Reminder - you can leave the AOLserver list at any time by simply going here: http://listserv.aol.com/cgi-bin/wa?A0=aolserver and clicking on the join or leave the list link. - Nathan

[AOLSERVER] REMOVE

2003-02-18 Thread Andrew O'Neill
PLEASE remove me from this mailing list.

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Andrew Piskorski
On Tue, Feb 18, 2003 at 10:33:25AM -0500, Jim Davidson wrote: ns_after 1 {ns_thread begindetached [list atp_test foo bar]} This should create the thread 1 second after startup with the full environment. The reason is the scheduler has a call to Ns_WaitForStartup() at the top of the

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Brett Schwarz
On Tue, 2003-02-18 at 16:44, Andrew Piskorski wrote: On Tue, Feb 18, 2003 at 07:20:14PM -0500, Jim Davidson wrote: In a message dated 2/18/2003 5:53:54 PM Eastern Standard Time, [EMAIL PROTECTED] writes: - The BB_Nsv* C functions I've created in my nsvapi.c still aren't working right

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Andrew Piskorski
On Tue, Feb 18, 2003 at 05:12:38PM -0800, Brett Schwarz wrote: As a side note, you may want to look into using the Object interface to Tcl, i.e. Tcl_CreateObjCommand. Of cource there may be reasons why you are doing it this way, but thought I would just mention it... :) The reason was in

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Nathan Folkman
In a message dated 2/18/2003 8:21:55 PM Eastern Standard Time, [EMAIL PROTECTED] writes: The Tcl overhead from my custom commands was never even showing up in my performance profiling, so once I learned more about using Tcl's object interface, I never bothered going back and trying to object-ify

Re: [AOLSERVER] 4.0 ClientData arg ??

2003-02-18 Thread Brett Schwarz
On Tue, 2003-02-18 at 17:21, Andrew Piskorski wrote: On Tue, Feb 18, 2003 at 05:12:38PM -0800, Brett Schwarz wrote: As a side note, you may want to look into using the Object interface to Tcl, i.e. Tcl_CreateObjCommand. Of cource there may be reasons why you are doing it this way, but