Found 121,742 results in 0.156 seconds. Displaying page 7 of 12,175, sorted by
Sent 2010-08-27 by Erick Erickson <erickerickson@...>
I'm assuming that the queries you're timing also do not sort. Warmup queries
that don't sort also don't help speed up the first queries that do sort.
But assuming that sorting isn't the problem, you'll need to do a bit of
performance
monitoring. You haven't mentioned what op system you're using,...
Sent 2010-08-27 by Gérard Dupont <ger.dupont@...>
Hi all,
I recently came across a strange exception while using SolR. In fact I have
an ArrayOutOfBoundsException while using the server and making "normal"
query (I mean not different from before). The trace is he following :
Caused by: java.lang.ArrayIndexOutOfBoundsException: 2
at org.apache....
Sent 2010-08-27 by Stefan Nikolic <stefan.nikolic@...>
Sanne,
I'd prefer to use symlinks for existing, static indexes, but I'm really glad
you showed me FileSwitchDirectory. I think it will be useful for me in the
future. Thanks for your advice!
Any tips on how to convert an existing CFS index to non-CFS? I'm aware of
the extractor in IndexReader, ...
Sent 2010-08-27 by Jagdish Vasani IN <jvasani@...>
Hi,
I get it working..here is logic that need to implement...
In function getTermQuery check term is stop word or not if it is stop
word then return null.
Otherwise return SrndTermQuery object..
Code ...
protected SrndQuery getTermQuery(
String term, boolean quoted) {
if(stopwo...
Sent 2010-08-27 by Jagdish Vasani IN <jvasani@...>
Hi,
I mean to say ..if I want to query like "Solr rocks" with Surround query
then I have to explicitly pass slop like "Solr 1w rocks"
I want to implement this logic in code so user can only enter "solr
rocks"..so internally default operator (1w) will be added inbetween two
words.
Any suggestio...
Sent 2010-08-27 by Jagdish Vasani IN <jvasani@...>
Hi,
Can any one guide me.. how I can accomplish to add default operator
(W/1) in surround query ?
Thanks,
Jagdish
Sent 2010-08-27 by Shelly_Singh <Shelly_Singh@...>
The queries that I have recorded performance for matches documents ranging from 340 to 3000. I am not processing any documents yet; I mean time of 2 seconds does not include time for processing /collect scoreDocs...
Thanks and Regards,
Shelly Singh
Center For KNowledge Driven Information System...
Sent 2010-08-27 by Toke Eskildsen <te@...>
On Fri, 2010-08-27 at 05:34 +0200, Shelly_Singh wrote:
> I have a lucene index of 100 million documents. [...] total index size is 7GB.
[...]
> I get a response time of over 2 seconds.
How many documents match such a query and how many of those documents do
you process (i.e. extract a term fo...
Sent 2010-08-27 by Karl Wettin <karl.wettin@...>
Can you tell us what your queries are? Is it simple term queries,
phrases, fuzzy, etc?
I think the bad guy here is the term "hotel", that so many documents
contains it. You could try loading the full index to II and see how
long time it take to match just that term and compare. And then tr...
Sent 2010-08-27 by Sanne Grinovero <sanne.grinovero@...>
Hi Stefan,
you might want to consider org.apache.lucene.store.FileSwitchDirectory
before going for the symlinks approach.
Sorry I don't know the effect nor recommended file types, I would
naively start setting the smallest on SSD, then perform tests, but
that's possibly not the best scenario:
und...