0

I created an object pool manager under Resources > Object pool managers in WebSphere Application Server 7.0. How do I set the maxSize and minSize of the pool? Can you direct me to a tutorial on how to set the properties of the pool? Also do you know of a website that list the properties that I can set?

I tried to search for it but I wasn't able to find it. Maybe I'm using the wrong keyword.

Thank you!

Arci
  • 6,647
  • 20
  • 70
  • 98

1 Answers1

0

The ObjectPool implementation does not expose a mechanism for maximum pool size. The mechanism is somewhat primitive, and you might be better off writing your own. You might consider writing your own CustomObjectPool implementation, which would allow you to specify custom properties from the console.

Brett Kail
  • 33,593
  • 2
  • 85
  • 90