Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
11answers
2k views

How do you make your Java application memory efficient?

How do you optimize the heap size usage of an application that has a lot (millions) of long-lived objects? (big cache, loading lots of records from a db) Use the right data type Avoid ...
8
votes
1answer
911 views

BlockingCollection(T) performance

For a while at my company we've used a home-grown ObjectPool<T> implementation that provides blocking access to its contents. It's pretty straightforward: a Queue<T>, an object to lock on, ...
2
votes
2answers
187 views

Is there any generics version of apache common object pool?

When using apache common pool, it can provide me a good implementation of Java object pooling. However their KeyedPoolableObjectFactory interface is not type safe. Is there any object pool library in ...
1
vote
2answers
31 views

How can I prevent construction with Object Pool

I want to use the Object Pool design pattern for my library so that the user cannot create more than a predefined number of objects. However, how can I force the user to use the Pool class for ...
1
vote
3answers
1k views

C++ Lock-Free templated ObjectPool

do they exist ? *added to clarify: is there any usable library that implement lock-free (which is threadsafe and might be implement spinlock or other lightweight synchronization) ObjectPool ( ...
0
votes
1answer
63 views

How to test an object pool? [closed]

As I write an object pool is use C# special. But I don't know how to test it. My object pool has implemented from interface IPool<T> interface IPool<T> where T : class { int ...
0
votes
1answer
116 views

Object Pooling and CSLA Framework

I have an application that follows the basic methodoligy in the CSLA framework. Specificly, the objects know how to maintain their state and how to create, update, delete themselves. The car class ...
0
votes
1answer
68 views

Populating an object pool on JAR load

I have a core JAR that provides some functionality and hence used in lots of other apps as well - desktop apps, web apps etc. Now this core JAR maintains an object pool containing objects that are ...