Skip to content

Commit

Permalink
No memory recycling
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunjeet committed Oct 24, 2023
1 parent 1cdd463 commit bf30147
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import com.netflix.hollow.core.HollowStateEngine;
import com.netflix.hollow.core.memory.pool.ArraySegmentRecycler;
import com.netflix.hollow.core.memory.pool.RecyclingRecycler;
import com.netflix.hollow.core.memory.pool.WastefulRecycler;
import com.netflix.hollow.core.read.dataaccess.HollowDataAccess;
import com.netflix.hollow.core.read.dataaccess.HollowTypeDataAccess;
import com.netflix.hollow.core.read.engine.map.HollowMapTypeReadState;
Expand Down Expand Up @@ -83,7 +84,7 @@ public HollowReadStateEngine(boolean listenToAllPopulatedOrdinals, ArraySegmentR

@Deprecated
public HollowReadStateEngine(HollowObjectHashCodeFinder hashCodeFinder) {
this(hashCodeFinder, true, new RecyclingRecycler());
this(hashCodeFinder, true, new WastefulRecycler(11, 8));
}

@Deprecated
Expand Down

0 comments on commit bf30147

Please sign in to comment.