0

I need to create a pool of socket connections (TCP). I'm planning to use commons pool but would like to know about any proprietary object pool libraries in the market.

Thank you Bhargava

BoCode
  • 847
  • 4
  • 17
  • 33
  • 1
    It quite common to dedicate a thread(s) per connection or a thread pool for a collection of Sockets. I am not sure how useful a simple pool of Sockets is. – Peter Lawrey Jan 06 '12 at 11:53

2 Answers2

1

Try checking this out. PooliT

Jrom
  • 849
  • 1
  • 10
  • 19
0

Apache Commons provide a generic Object pooling library called Pool

It also has a database specific pooling library call DBCP

Rajesh Pantula
  • 10,061
  • 9
  • 43
  • 52