New ReferenceConverter method in Commerce 13.21
As you might have heard - ReferenceConverter is your friend. It is very lightweight way to map between the ContentReference and code of catalog content, instead of having to load the content - which is both slow and expensive. Whenever you have chance, ReferenceConverter should be used.
But it is now even better. In Commerce 13.21, ReferenceConverter has a new method to get multiple codes at once. It looks like this
public virtual IDictionary<ContentReference, string> GetCodes(IEnumerable<ContentReference> contentLinks, CatalogContentType catalogContentType)
A common scenario for this new method is when you need to get all variants of a product (by using IRelationRepository), then get all prices or inventories for those variants. Instead of
var allVariantCodes = allVariantLinks.Select(x => _referenceConverter.GetCode(x));
You can now call
var allVariantCodes = _referenceConverter.GetCodes(allVariantLinks, CatalogContentType.CatalogEntry).Values;
The former can result in multiple database roundtrips - depending on how many variants you have. The latter always results in at most 1 database roundtrip. As we all know each roundtrip adds overhead, so there will be a performance improvement.
This is great news, Quan.
I have been wishing for this for some time.
woohoo .. now my schedule jobs that import catalog can run faster!
Great! Keep em coming! ;)
@Quan Mai: I have a similar optimization wish for batch loading CMS content without first loading core data.
I once raised this thread related to
ContentAreaItem
batch loading, which resulted in many roundtrips even when I calledIContentLoader.GetItems
on the content area items.Do you know whether the CMS team has something planned for this?