[
https://issues.apache.org/jira/browse/SOLR-680?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12620812#action_12620812
]
Lars Kotthoff commented on SOLR-680:
------------------------------------
Looks good. Some initial comments:
* Do we need to specify stats=on explicitely when it's a separate request
handler?
* "qt" should probably renamed to something like "samples" or "quantity" as
there's already a "qt" (query type) parameter.
* What's supposed to happen when this is called on a non-numerical field? Error
message in response XML or exception?
> StatsComponent - get min, max, sum, qt, avg of number fields
> ------------------------------------------------------------
>
> Key: SOLR-680
> URL: https://issues.apache.org/jira/browse/SOLR-680
> Project: Solr
> Issue Type: New Feature
> Components: search
> Reporter: Koji Sekiguchi
> Priority: Minor
> Attachments: SOLR-680.patch
>
>
> StatsComponent - it returns min,max,sum,qt,avg of specified number fields:
> request parameters:
> &stats=on&stats.field=price
> {code:xml}
> <stats>
> <stats_fields>
> <lst name="price">
> <double name="min">10</double>
> <double name="max">30</double>
> <double name="avg">20</double>
> <double name="sum">60</double>
> <double name="qt">3</double>
> </lst>
> </stats_fields>
> </stats>
> {code}
> WRT "stats", the component can output sum and avg, but not sd and var.
> USE CASE:
> StatsComponent can be used to get "market price" of DocSet e.g. rental
> housing site, package tour site.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.