Maybe the case for object pooling?
I have a large array I am processing. Each item is a large object that has multiple processors (classes with state).
Creating those 10 for example proccessors for every item in the list will be expensive.
Should I use something like object pooling? So I create the processor once and reuse it using a reset pattern? What's the best way to handle it?
Also maybe there is a better alternative to classes altogethe?
9 Replies
2 options:
- pool;
- use structs and ids instead of references, look up in the array when you need to update a processor.
You only need any of these if you're going to be creating new processors often
A pool + reset (also called flyweight) is how people usually do it
You have no way around having a large amount of fields if you need a large amount of fields, unless the problem allows one to redesign it in a way where you don't.
@Anton mind sharing a simple code example? I know object pool exists but only saw it used with buffers. Never actually worked with structs to be honest so I am not sure I understand
I am generally not sure how best to process a big object with many logics on it which is part of a really large array
If you're worried about returned references hanging around in the program, you may add some safeguards
Like this maybe
Well I got a bit lost tbh. Maybe if I explain better it will match more what I am doing.
Each item I am processing is large (with nested large arrays too) so I iterate over it once and apply logics. Each logic is a class
The problem is creating those classes for every item I am processing
When I have many items
The classes themselves are small (methods and some state)
well you can separate out data per item and the processors
only store data per item and a reference to the processor that takes that data as a parameter
This will allow you to not have to store a whole separate processor for each item
But have a singleton processor and only store a reference to it, or not store a reference at all and get it from some other context
Depending on the problem, an ECS might help
@Anton ye sounds good. Make the proccessor singleton and only create a data object per item. I guess use pooling or struct for this data object right?
if you need to
Well I am not sure haha
It means allocating for every item
That's why I asked
the best way to allocate objects is to either not allocate, or allocate and later deallocate them all at once
spend time on this issue if your program actually consumes too much memory
because it's going to take some effort and make the code surface you have to maintain larger