What I understood after profiling is that copy on read has a huge overhead. It seems for my case CopyHelper.doDeepCopy is being called which is slowing down things hugely.
My class currently implements DataSerializable still the ObjectOutPutStream is used (it might be for fields like String etc). l But over all its taking a huge part if the time. On Sun, Jan 14, 2018 at 1:54 AM, Jacob Barrett <[email protected]> wrote: > If you’re running a function that executed a query on the local only data > then you should consider setting PDX read serialized option to true on the > servers. This prevents the deserialization of the PDX object and allows > your function to interact directly with PDX. > > -Jake > > > > On Jan 13, 2018, at 10:36 AM, Amit Pandey <[email protected]> > wrote: > > > > Actually for local data set with index its taking me 4-5 seconds to > fetch the data for 30K records and I am using index. Is it normal or can it > be improved ? >
