vote up 0 vote down star

I want to create a "singleton-factory class" to retrieve my specialized objects. It is possible to create such a class and does it give me some performance surplus over a simpler solution like a static factory? Or are there any other solutions?

This class would be a key component of a data intensive application dealing with constant database access writes. Each specialized object would be called when the factory recognizes that it is needed to write a row in a table with a special pattern.

I'm not a performance expert but would like to tune the solution to be memory light, there's not a need for more that 1 factory across multiple threads dealing with specialized objects and I would like to implement some caching (to retrieve already created Specialized instances).

Solutions?

flag

80% accept rate
your question isnt very clear about what is it you're asking - are you asking whether it will save memory/improve performance by implementing a singleton factory? – Chii Jul 22 at 11:48
I tried to clarify my question. – Lex Jul 22 at 12:07

1 Answer

vote up 2 vote down check

Why not make this class using static fonctions ? No need of instanciating a factory.

link|flag
That's what I thought about when I wanted it to be unique across multiple Threads, but I still miss some piece of the puzzle – Lex Jul 22 at 11:00
What pieces of the puzzle ? – Clement Herreman Jul 22 at 11:06
None, problem solved while writing this comment.! Your answer has proven useful. – Lex Jul 22 at 12:11
It is my pleasure – Clement Herreman Jul 22 at 12:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.