Found 121,742 results in 0.068 seconds. Displaying page 5 of 12,175, sorted by
Sent 2010-08-29 by Erick Erickson <erickerickson@...>
Adding to Uwe's comment, you may be operating under a false
assumption. Lucene has no capability to update fields in a document.
Period. This is one of the most frequently requested changes, but
the nature of an inverted index makes this...er...tricky. Updates
are really a document delete followe...
Sent 2010-08-29 by Uwe Schindler <uwe@...>
You cannot retrieve non-stored fields. They are analyzed and tokenized
during indexing and this is a one-way transformation. If you update
documents you have to reindex the contents. If you do not have access to the
original contents anymore, you may consider adding a stored-only "raw
document" f...
Sent 2010-08-29 by Constantine Vetoshev <gepardcv@...>
Thanks Erick.
I finally had time to go back and look at this problem. I discovered
that the analyzed fields work fine for searching until I use
IndexWriter.updateDocument().
The way my application runs, it has to update documents several times to
update one specific field. The update code queri...
Sent 2010-08-29 by Ted Dunning <ted.dunning@...>
So the current state of your problem is this:
a) desired indexing speed = 10,000 objects per second (peak rate) (ish)
b) total number of objects = 10,000,000
This gives desired from-scratch indexing time of 1000 seconds = 17 minutes
c) object life = 2+ days
but 2 days = 170,000 seconds. At ...
Sent 2010-08-29 by Ted Dunning <ted.dunning@...>
I think you missed Jenny's point.
She was asking whether you could buffer up a hundred or a thousand (or more)
items and index
them all at once. This doesn't require that you go to the data store, just
that you have a buffer
that sticks around for a few minutes (or seconds from your apparent in...
Sent 2010-08-29 by exlibrit <exlibrit@...>
Hi,
I am beginner of Java and Lucene. Maybe it is very easy, but i could not
find any solutions, my problem is that:
1. I want to stem German words,
2. If the word isn't stemmed then don't include it into the index, by doing
this, dont lose nex word's position.
Which code blocks i need to chang...
Sent 2010-08-29 by Ron Ratovsky <ronr@...>
Answers are within the message.
On Fri, Aug 27, 2010 at 22:05, Ted Dunning wrote:
> Can you say a bit more about your application? How many object total are
> there?
>
> Our goal is to hold a few tens of millions objects at any given time.
> What is an object lifetime...
Sent 2010-08-29 by Ron Ratovsky <ronr@...>
The indexing is done synchronously to saving the data.
Doing it asynchronously works slower since then the data to be indexed needs
to be read from the data store, which is slower.
On Thu, Aug 26, 2010 at 18:58, Jenny Brown wrote:
> Do you index as you go along, or do you ba...
Sent 2010-08-29 by Apache Hudson Server <hudson@...>
See
Changes:
[rmuir] LUCENE-2624: add armenian, basque, catalan analyzers from snowball
[rmuir] LUCENE-2624: add armenian, basque, catalan analyzers from snowball
[rmuir] SOLR-2059: Add types attribute to WordDelimiterFilterFact...
Sent 2010-08-28 by Robert Muir <rcmuir@...>
my mistake... this test should be toned down, its a bit too intense
On Aug 28, 2010 8:53 PM, "Apache Hudson Server"
wrote:
> See
>
> Changes:
>
> [rmuir] LUCENE-2624: add armenian, basque, catalan analyzers f...