Should Disruptor be used only for POD datatypes?
i mean should Disruptor<T> be used only for T taking values like byte[], int[], etc ?
my doubt is that if we use T which has Object references as its member variables, we need to new those member variables, which will lie on heap.
which will again lead to cache misses as the member variable may lie on a totally separate part of heap.
So is my thinking correct that Disruptor<T> should be used only for T belonging to the set of Plain Old Datatypes (PODs)?
Regards, VImal
UPDATE: Can someone else please take a look at this question?
UPDATE2:
Reply to @Trisha
Hi Trisha,
Greetings.
i saw the link you mentioned.
com.lmax.ticketing.api.Message is inherited from javolution.io.Struct and composed of elements from javolution.io.Struct and javolution.io.Union which makes Message to be interoperable between C/C++
For any class inheriting from javolution.io.Struct/Union the memory layout is defined by the initialization order of the Struct/Union's members and follows the same wordSize rules as C/C++ structs.
So, in essence, you have control over the memory layout of the elements you put in the Disruptor. And all members and sub-members of Message are fix sized, i.e. dont have any dynamic memory (java.lang.Object)
That is exactly my point also, that we should use such elements whose memory layout we can control and dont have any dynamic memory. And this is done to minimise the cache misses.
Suppose, if a part of the Message was, say, java.lang.String, we dont know where JIT compiler would have placed that String. and if i am accessing the Message.String in the an EventHandler this could have resulted in a cache miss as the String may be present in a totally different chunk of memory..
Am i right?