fixed memory hit on startup

This commit is contained in:
Todd Gruben 2017-06-23 08:13:57 -05:00
parent 987f7ca3bf
commit bed7b41faf

View file

@ -272,8 +272,8 @@ func (f *Fragment) openCache() error {
// Read in all rows by ID.
// This will cause them to be added to the cache.
for _, id := range pb.IDs {
//n := f.storage.CountRange(id*SliceWidth, (id+1)*SliceWidth)
n := f.row(id, true, true).Count()
n := f.storage.CountRange(id*SliceWidth, (id+1)*SliceWidth)
//n := f.row(id, true, true).Count()
f.cache.BulkAdd(id, n)
}
f.cache.Invalidate()