Skip to content

Commit 5afdeb8

Browse files
Merge pull request #117 from k-r-g/methodValueCache_getObjects_optimization
Improve performance of getObjects() for EntityGroup
2 parents 97e94fb + 77d7e0c commit 5afdeb8

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

gemini/src/main/java/com/techempower/cache/MethodValueCache.java

+4-11
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
package com.techempower.cache;
2929

30-
import gnu.trove.iterator.*;
3130
import gnu.trove.map.*;
3231
import gnu.trove.map.hash.*;
3332
import gnu.trove.set.*;
@@ -211,16 +210,10 @@ public List<T> getObjects(String methodName, Object value)
211210
{
212211
return new ArrayList<>(0);
213212
}
214-
215-
List<T> values = new ArrayList<>();
216-
217-
for (TLongIterator iterator = ids.iterator(); iterator.hasNext();)
218-
{
219-
long id = iterator.next();
220-
values.add(this.cache.get(this.type, id));
221-
}
222-
223-
return values;
213+
214+
// Provide the list of desired IDs to map() so that, if this is an EntityGroup, we can
215+
// efficiently build all of them from a single query.
216+
return new ArrayList<>(this.cache.map(this.type, ids.toArray()).valueCollection());
224217
}
225218
}
226219
finally

0 commit comments

Comments
 (0)