I am using solr for indexing data. I need some statistics information like "max , min , stddev" from indexed data. I read about SolrStatsComponent
and I used this too.
I read this line on apache_solr_4_cookbook.pdf
"Please be careful when using this component on the multivalued fields as it can be a performance bottleneck."
My Solr Query
http://localhost:8080/solr/daycore/select?q=*:*&stats=true&stats.field=login_attempts&rows=0
Can I use this query?
schema.xml
<field name="login_attempts" type="long" indexed="true" stored="false"/>
Is it affect solr performance?