Framework: Optimizing Search Responses
2022 ∙ March ∙ Osm Framework
1 year ago ∙ 1 minute read
The implementation of the faceted implementation in osm.software
blog has shown that sometimes you need only facet counts, or only total count of matching entries. However, currently, Osm Framework always returns total count
, ids
and facets
.
Let's fix that.
By default, the result will only contain ids
. You can cancel that using hits()
method:
$query->hits(false);
If needed, request the total count using count()
method:
$query->count();
Notice. In previous framework version, count()
method had different semantics. Search usages of this method in your code before migrating to v0.15
.