-
Task
-
Resolution: Duplicate
-
Minor
-
5.3.0.Final
-
Medium
Currently AsyncStore.loadAll() method strategy is suboptimal.
actually loadAll do this:
getAll keys from cache
itarate on keys and load each value from store.
This is can be really costly when we have db persistance behind async store.
cost:
1 query for keys + number of keys query.