Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
6answers
1k views

Can't find a modern Implementation of Object Pool in Java

I'm looking for a modern implementation of an object pool in Java. I can see the apache commons one, but to be honest, I'd rather one that uses generics, and the concurrency stuff from more recent ...
6
votes
4answers
1k views

Is there a general-purpose object pool for .NET?

I have a class that is expensive to construct, in terms of time and memory. I'd like to maintain a pool of these things and dispense them out on demand to multiple threads in the same process. Is ...
6
votes
6answers
3k views

Does this basic Java object pool work?

Does the following basic object pool work? I have a more sophisticated one based on the same idea (i.e. maintaining both a Semaphore and a BlockingQueue). My question is - do I need both Semaphore ...
4
votes
2answers
130 views

How to throttle webservice calls in a Java web application

My requirement is very simple to understand. I want to call a web service from my Java web application with restriction of maximum 10 webservice calls per minute. Just after 1 minute, I can establish ...
4
votes
3answers
250 views

Generic InternPool<T> in Java?

How would I write a generic InternPool<T> in Java? Does it need a Internable interface? String in Java has interning capabilities; I want to intern classes like BigDecimal and Account.
4
votes
4answers
3k views

Object pool vs. dynamic allocation

When should one prefer object pool over dynamically allocated objects? I need to create and destroy thousands of objects per second. Is it by itself enough to decide in favor of object pool? Thanks. ...
4
votes
1answer
2k views

How does one manage object pooling in Spring?

It's my understanding that in Spring, all objects are treated by default as singletons. If singleton is set to false, then a new object will be served at each request. But what if I wanted to pool ...
3
votes
1answer
50 views

Creating a generic class pool where you give the generic parameter and get a generic object that used that parameter

Goal I have a generic class GenericClass<T> and I want to pool instances. I'm interested in seeing if I can get the syntax: MyGenericPool = new GenericPool<GenericClass>(); // Or maybe ...
3
votes
3answers
95 views

PHP pooling functionality (not just database connections)

Is it possible to pool data or functionality in PHP? The amateur-ish PHP code that I write wakes up to handle a response, loads functions, opens database connections, create objects, initialises ...
2
votes
1answer
30 views

Implementation of Object Pooling Concept in android

I am new to android, I need to use Object Pooling in my App, but I don't know enough about it. How might it be implemented?
2
votes
0answers
28 views

Pooling concept in java or EJB?

we have pooling concept in stateless EJB. What is the advantage of using pooling? My understanding is that it will just save the time in object creation. Is this right?If yes is there a significant ...
2
votes
1answer
243 views

How can I implement a reusable object pool in C#?

I'm processing a lot of data off a streaming socket. The data is used and left for the GC to clean up. I want to allocate a reuseable pool upfront and reuse it to prevent lots of GCs. Can anyone help ...
2
votes
2answers
317 views

Is there an open source thread safe C++ object pool implementation?

Greetings, I need to create a pool of socket connections which will be served to multiple worker threads. Is there a thread safe object pool implementation with functionality similar to Apache ...
2
votes
3answers
269 views

Is there any reason for an object pool to not be treated as a singleton?

I don't necessarily mean implemented using the singleton pattern, but rather, only having and using one instance of a pool. I don't like the idea of having just one pool (or one per pooled type). ...
2
votes
3answers
843 views

How to create custom object pools in Java application server

Suppose I have a message driven bean (MDB) in a Java application server. The MDB receives a message from a JMS queue and passes it to a message processor. In my case, a message processor is an ...
1
vote
1answer
64 views

boost pool alternative to calloc

all, If you use boost pool library, how would you replace the following statement: MyStruct *someStruct = (MyStruct *) calloc(numOfElements, sizeof(MyStruct)); If it was for one element, I would ...
1
vote
6answers
268 views

Fastest method to find a complex type in a list (Vector, Array, Dictionary, whatever is faster)

Hail, Stack! I need to know the best method to find an item inside a list (Vector, Array, Dictionary, whatever is faster) of complex type (extensions of Objects and Sprites). I've used "Needle in ...
1
vote
0answers
107 views

recursively calling method (for object reuse purpose) [closed]

Possible Duplicate: recursively calling method (for object reuse purpose) i have a rather large class which contains plenty of fields (10+), a huge array (100kb) and some unmanaged resouces ...
1
vote
1answer
204 views

NetworkStream Pooling

I have a multi-threaded application which communicates with a server over a TCP connection. The application would be deployed as a windows service. The way it has been implemeted is, there is ...
1
vote
1answer
261 views

Which object pool backing store to choose?

In our C# (.NET 4.0) application, we allocate and de-allocate a lot of memory, in different size chunks. We want to move to an object pool, to improve performance. We implemented an object pool ...
1
vote
1answer
602 views

boost object_pool construct method

I'm keen on using boost's object_pool class for memory re-use for a set of video frames. boost::object_pool< VideoFrame > FramePool; Now, the VideoFrame class has two constructors. The first ...
1
vote
2answers
527 views

Object pooling: howto

I need to implement a pool of Sessions that are returned by an external system, so that I can reuse them quickly as soon as one is needed (creating a Session takes a while). I've worked with ...
1
vote
2answers
384 views

object pooling framework

any suggestions for a C# object pooling framework? requirements are multi-thread support and a pool size limit, when a thread requests an object but none is available, it's blocked until one of the ...
0
votes
1answer
19 views

Can we use Object Pooling concept instead of declaring large size byte array?

I have a question that Can we use Object pooling concept instead of declaring large size byte array as 20MB. If yes then How? Actually I have a statement as byte[] fileData = new byte[2097152]; ...
0
votes
2answers
45 views

is there a proprietary java object pooling library?

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
0
votes
1answer
64 views

Object Pool not working

I'm having trouble setting up my object pool. I created a "BallPoll" custom class to handle the pooling logic. I first call fillPool() to add 20 Ball objects into my array. Then in my document ...
0
votes
1answer
46 views

One object pool to contain different derived classes

Short version: How would i go about creating an object pool that can store classes of different types all derived from the same base class? See below for an example of expected usage. Long ...
0
votes
1answer
87 views

AS3 Object Pool for sound effects

I am building a game where I need top handle A LOT of sound effects. I created an object pool for the effects to be able to reuse them. My problem is how I should write a nice pool solution without ...
0
votes
1answer
161 views

Need help with pooling in Memcached

I have a web application running on multiple servers. And I am planning to implement Memcached into this app with spymemcached as the client. I have created a pool of memcached clients. But I am not ...
0
votes
0answers
308 views

Avoiding stale custom objects in Spring object pool?

I am using Spring to pool instances of oracle.AQ.AQSession. After a short time the pool begins to return stale connections and I get connection closed exceptions. How can I tell Spring to evict ...
0
votes
1answer
50 views

Single reference into multiple objects

I am a bit lot about what to do in an OO/DB relation... Here is the DB model : CREATE TABLE User Id CREATE TABLE Location userId // EDIT oups, wrong ! // placeId // Should be : ...
0
votes
1answer
227 views

Object pool and flash

When is it a good idea to use an object pool in Flash? For example, is it a good/bad idea with bitmaps, MovieClips (with timeline animations inside of them), video, fonts?
0
votes
2answers
359 views

How to implement an Object Pool for Flex Data/Item Renderers

You can hook into the creation of Flex 4 item renderers easily enough (through itemRenderer, or itemRendererFunction) allowing you to pull renderers from a custom object pool, but how would you put ...
0
votes
1answer
71 views

Custom JSP Tag processor is caching a dated property, so the page shows old data and don't update, how to avoid this?

I made a custom jsp tag that search a historical value on a database an render it on the page. The attributes that the tag requires are the variable name and the date. The problem is that the 'date' ...
0
votes
3answers
431 views

Object pooling in Objective-C

Is there a nice way to do this in Objective-C, or do I have to write my own tedious logic? I'm creating and destroying a little of little state objects per frame in an iPhone game. It would be nice ...
0
votes
1answer
458 views

COM Object Pooling and .NET Web Service

I have a COM object which I need to access from my .NET Web Service. I know of the whole STA/MTA thing - so my COM object would be converted to be MTA and have no global state (while not being ...