Hi, I meant:
solr/select?q="kelile&dimle"
Cheers.
2013/5/29 Jack Krupansky
> You need to UUEncode the & with %26:
>
> ...solr/select?q=kelile%**26dimle
>
> Normally, & introduces a new URL query parameter in the URL.
>
> -- Jack Krupansky
>
> -Original Message- From: Furkan KAMACI Se
Hi,
try with double quotation marks (" ").
Carlos.
2013/5/29 Furkan KAMACI
> I use Solr 4.2.1 and I analyze that keyword:
>
> kelile&dimle
>
> at admin page:
>
> WT
>
> kelile&dimle
>
> SF
>
> kelile&dimle
>
> TLCF
>
> kelile&dimle
>
> However when I escape that charter and search it:
>
> solr
uot;, "true");
solrQuery.add("group.field", "B"); // Group by the field
solrQuery.add("group.ngroups", "true");
solrQuery.setRows(0);
And in the response *getNGroups()* will give you the total number
of distinct values (total number of "B" dist
Hi Lisheng,
I had the same problem when I enabled the "autoSoftCommit" in
solrconfig.xml. If you have it enabled, disabling it could fix your problem,
Cheers.
Carlos.
2013/5/22 Zhang, Lisheng
>
> Hi,
>
> We are using solr 3.6.1, our application has many cores (more than 1K),
> the problem is t
Hi Mikhail,
yes the thing is that I need to take into account different queries and
that's why I can't use the Terms Component.
Cheers.
2013/5/17 Mikhail Khludnev
> On Fri, May 17, 2013 at 12:47 PM, Carlos Bonilla
> wrote:
>
> > We
> > only need to calculate how
Sorry, 16 GB RAM (not 8).
2013/5/17 Carlos Bonilla
> Hi,
> To calculate some stats we are using a field "B" with 50.000.
> different values as facet pivot in a schema that contains 200.000.000
> documents. We only need to calculate how many different "B" va
Hi,
To calculate some stats we are using a field "B" with 50.000. different
values as facet pivot in a schema that contains 200.000.000 documents. We
only need to calculate how many different "B" values have more than 1
document but it takes ages Is there any other better way/configuration
Hi,
have a look at http://wiki.apache.org/solr/TermsComponent.
Regards,
Carlos.
2013/5/8 ld
> Within MySQL it is possible to get the Top N results while summing a
> particular column in the database. For example:
> SELECT ip_address, SUM(ip_count) AS count FROM table GROUP BY ip_address
> ORD