On Thursday 10 January 2002 12:48 pm, Stephen McConnell wrote: > understand correctly, under Phoenix the proxies etc. are already > instantiated .. is there a real benefit in delaying a lookup > invocation ?
I delay lookup in ThreadSafe components that access Pooled ones. Take a component that accessed the database for example. It is ThreadSafe, but I don't want to just grab a single connection upon component initialization. Rather as a data-accessing method is called, it gets a DB connection, does the work, and returns it to the pool. -pete -- peter royal -> [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
