I am reading from database a large collections of this type List<Rows<Long,String,ByteBuffer>>
I then read the data from these list of rows one by one and put the data from them into container objects. Should I de-reference the individual rows, in the list, to null as I move ahead with reading each of them OR should I finally de-reference them finally so that they can be garbage collected ?
Since each row is quite big consisting of large strings/blobs/ text content etc I am trying to optimize for garbage collection. I hope this is not called the premature optimization !?
premature optimization. Did you check your JVM usage stats on how long the gc is taking on average? – CoolBeans Mar 8 '11 at 21:10