Configuring Jetty to access a pool of shared objects

619 Views Asked by At

I have an object that processes text in a stateless way. It basically takes some input and returns the result. However, creating the object is expensive, as it needs to load a lot of data into memory. I would like to build a web service around it using Jetty, so that I can parse text from external sources. Jetty should keep a pool of such objects in memory and use them to process the HTTP requests (making sure that a single object is being used by only one HTTP thread at a time). How can I configure the server to do it?

1

There are 1 best solutions below

2
On BEST ANSWER

Jetty by itself is not going to help a lot on this, but you can easily plug the pool component of Apache Commons to achieve what you want.

Then. from your web service, you can just reference this object pool to get your processing object.