Can you provide a stack trace for the OOM eexception ?
On Tue, Jun 7, 2011 at 4:25 PM, Bohnsack, Sven
wrote:
> Hi all,
>
> we're using solr 1.4 and external file field ([1]) for sorting our
> searchresults. We have about 40.000 Terms, for which we use this sorting
> option.
> Currently we're runn
"newly added" is a bit vague. Do you mean "since last Sunday" ? "between
the last and the one before that" ? Also, do you need to
distinguish between updated and newly added documents ?
Perhaps you could be more specific about the use case.
-Simon
On Fri, Jan 22, 2010 at 4:25 AM, Erik Hatcher
What Garbage Collection parameters is the JVM using ? the memory will not
always be freed immediately after an event like unloading a core or starting
a new searcher.
2010/2/8 Tim TerlegÄrd
> To me it doesn't look like unloading a Solr Core frees the memory that
> the core has used. Is this ho
http://issues.apache.org/jira/browse/SOLR-1490 has a patch which will do
what you want
-Simon
On Thu, Mar 4, 2010 at 2:21 PM, javaxmlsoapdev wrote:
>
> I have to use
>
> http://wiki.apache.org/solr/DataImportHandler#Usage_with_XML.2BAC8-HTTP_Datasource
> HttpDataSource to ask Solr consume my
I also couldn't get the exact results I wanted for indexing URL components
using WordDelimeterFilter or patternTokenizer, so resorted to adding a new
field ('pathparts'), plus a few lines of code to generate the tokens in our
content preprocessor which submits documents to SOLR for indexing.
-Si
Similarly, I had considered a URP which would call the Solr Tagger to add
new metadata fields for indexing to incoming documents (and recall
discussing this with David Smiley), but eventually decided against this
approach on the grounds of complexity.
-Simon
On Wed, Sep 4, 2019 at 2:10 PM Arnold
Hi Vipul:
I'm not sure what you mean by 'score' in this context, as tagging requests
do not return a standard Solr/Lucene score. If you're looking for the
number of times a specific tag occurs in the tagged text, then you'll need
to calculate that in your application from the returned JSON.
HTH