Skip to content

Commit

Permalink
Merge pull request #3653 from ingef/fix/id-mapping-caching
Browse files Browse the repository at this point in the history
adds back missing usage of CachedStore for IdMapping
  • Loading branch information
awildturtok authored Jan 22, 2025
2 parents b61bfee + 0158f76 commit ecfb87e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -221,7 +221,7 @@ public SingletonStore<EntityIdMap> createIdMappingStore(String pathName, ObjectM

openStoresInEnv.put(bigStore.getDataXodusStore().getEnvironment(), bigStore.getDataXodusStore());
openStoresInEnv.put(bigStore.getMetaXodusStore().getEnvironment(), bigStore.getMetaXodusStore());
return new SingletonStore<>(bigStore);
return new SingletonStore<>(new CachedStore<>(bigStore));
}
}

0 comments on commit ecfb87e

Please sign in to comment.