• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Remove Infected Connections Enabled

 
Ranch Hand
Posts: 154
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In wl 8.1 sp 2 documentation says that when this value is enabled...
that connection pooling is essentiallty disabled. Since the default
is true for this value then is connection pooling by default enabled.
What are effects if this is disabled does anyone know?

Doc...
"
Remove Infected Connections Enabled
Controls whether a connection will be removed from the connection pool when the application asks for the underlying vendor connection object. Enabling this attribute will have an impact on performance as it will essentially disable the pooling of connections (as connections will be removed from the pool and replaced with new connections).
"
 
drifter
Posts: 1364
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is discussed in a fair amount of detail in Getting a Physical Connection from a Connection Pool.

Connection pooling is disabled if your application uses the underlying vendor connection and you don't turn that default flag:



Most applciations don't use the underlying vendor connection.


Doc...
"
Remove Infected Connections Enabled
Controls whether a connection will be removed from the connection pool when the application asks for the underlying vendor connection object. Enabling this attribute will have an impact on performance as it will essentially disable the pooling of connections (as connections will be removed from the pool and replaced with new connections).
"


[ May 03, 2005: Message edited by: Carol Enderlin ]
 
andy armstrong
Ranch Hand
Posts: 154
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
wups missed that part. Thanks verymuch.
reply
    Bookmark Topic Watch Topic
  • New Topic