Re: [Jelly] Are Script objects supposed to be thread-safe?

2002-10-03 Thread James Strachan
From: James Strachan [EMAIL PROTECTED] From: Morgan Delagrange [EMAIL PROTECTED] Are compiled Script objects supposed to be thread-safe, or do I need to pool them? In either case, the answer should probably be documented in the Javadocs. Scripts are *meant* to be thread safe. So each

Re: [Jelly] Are Script objects supposed to be thread-safe?

2002-10-03 Thread Morgan Delagrange
Thanks James! Having per-thread state management is much better than maintaining a pool. - Morgan --- James Strachan [EMAIL PROTECTED] wrote: snip/ So AFAIK the Scripts are all thread safe; there's only a few of them left now which should help ensure that thread-safety is preserved.

Re: [Jelly] Are Script objects supposed to be thread-safe?

2002-10-02 Thread James Strachan
From: Morgan Delagrange [EMAIL PROTECTED] Are compiled Script objects supposed to be thread-safe, or do I need to pool them? In either case, the answer should probably be documented in the Javadocs. Scripts are *meant* to be thread safe. So each Tag is thread local so that the same Script

Re: [Jelly] Are Script objects supposed to be thread-safe?

2002-10-02 Thread Morgan Delagrange
Nice! More below... --- James Strachan [EMAIL PROTECTED] wrote: From: Morgan Delagrange [EMAIL PROTECTED] Are compiled Script objects supposed to be thread-safe, or do I need to pool them? In either case, the answer should probably be documented in the Javadocs. Scripts are

Re: [Jelly] Are Script objects supposed to be thread-safe?

2002-10-02 Thread James Strachan
From: Morgan Delagrange [EMAIL PROTECTED] Nice! More below... --- James Strachan [EMAIL PROTECTED] wrote: From: Morgan Delagrange [EMAIL PROTECTED] Are compiled Script objects supposed to be thread-safe, or do I need to pool them? In either case, the answer should probably be

[Jelly] Are Script objects supposed to be thread-safe?

2002-10-01 Thread Morgan Delagrange
Are compiled Script objects supposed to be thread-safe, or do I need to pool them? In either case, the answer should probably be documented in the Javadocs. - Morgan = Morgan Delagrange http://jakarta.apache.org/taglibs http://jakarta.apache.org/commons http://axion.tigris.org

Re: [Jelly] Are Script objects supposed to be thread-safe?

2002-10-01 Thread Berin Loritsch
Morgan Delagrange wrote: Are compiled Script objects supposed to be thread-safe, or do I need to pool them? In either case, the answer should probably be documented in the Javadocs. Without very complex script object generation, or very simple script objects, it is difficult to ensure that