OrchardCMS / Orchard

Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform.
https://orchardproject.net
BSD 3-Clause "New" or "Revised" License
2.37k stars 1.12k forks source link

Small optimization in TaxonomyService #8775

Closed MatteoPiovanelli-Laser closed 3 months ago

MatteoPiovanelli-Laser commented 3 months ago

Memorize results of queries to prevent repeated execution within a request. We noticed a few instances where the same query would be invoked several times in the same request. For example, when several contentItems of a same contentType are in the same list.

This allows skipping a few of those queries.