| clear query|facets|time |
Search criteria: .
Results from 101 to 110 from
926 (0.384s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: Restrict Lucene search in concrete document ids - Lucene - [mail # user]
|
|
...Exactly what method in which class of which version of lucene are you trying to override? There is no "Bits" method. There is no "indexReader.Documents" method. I said this...
|
|
|
Author: Ian Lea,
2012-10-22, 13:12
|
|
|
Re: Removing Indexed field data. - Lucene - [mail # user]
|
|
...As Aditya said, you'll need to recreate that document. http://wiki.apache.org/lucene-java/LuceneFAQ#How_do_I_update_a_document_or_a_set_of_documents_that_are_already_indexed.3F ...
|
|
|
Author: Ian Lea,
2012-10-22, 13:07
|
|
|
Re: Restrict Lucene search in concrete document ids - Lucene - [mail # user]
|
|
...I would expect a filter to be quicker than adding thousands of clauses because Filters are just bit sets and operations are extremely fast. But never take performance predictions, particular...
|
|
|
Author: Ian Lea,
2012-10-17, 15:03
|
|
|
Re: Lucene updateDocument deletes the document, but the counts keep increasing - Lucene - [mail # user]
|
|
...I guess so. I don't pay much attention to these figures but presumably IndexReader.numDocs() and numDeletedDocs() will adjust as deletions get merged away. Try it and see. ...
|
|
|
Author: Ian Lea,
2012-10-17, 13:40
|
|
|
Re: Lucene updateDocument deletes the document, but the counts keep increasing - Lucene - [mail # user]
|
|
...Yes, IndexWriter.updateDocument() deletes and then adds. See the javadocs. So your index will have deleted docs. Why do you care? They'll go away eventually as segments get merge...
|
|
|
Author: Ian Lea,
2012-10-17, 13:03
|
|
|
Re: Lucene index on NFS - Lucene - [mail # user]
|
|
...I agree that reliability/corruption is not an issue. I would also put it that performance is likely to suffer, but that's not certain. A fast disk mounted over NFS can be quicker...
|
|
|
Author: Ian Lea,
2012-10-02, 12:56
|
|
|
Re: Lucene index on NFS - Lucene - [mail # user]
|
|
...You'll certainly need to factor in the performance of NFS versus local disks. My experience is that smallish low activity indexes work just fine on NFS, but large high activity indexes...
|
|
|
Author: Ian Lea,
2012-10-02, 09:10
|
|
|
Re: Index size doubles every time when I synchronize the RAM-based index with the FD-based index - Lucene - [mail # user]
|
|
...Are you loading it from disk, adding loads of docs then writing it back to disk? That would do it. How many docs in the memory index? How many on disk? What version o...
|
|
|
Author: Ian Lea,
2012-09-30, 20:02
|
|
|
Re: multireader.deleteDocuments transfer to IndexWriter.deleteDocuments ? - Lucene - [mail # user]
|
|
...So you've got a MultiReader over some number of indexes, and in order to delete stuff matched with that MultiReader you need an IndexWriter for the specific index that holds the selected ter...
|
|
|
Author: Ian Lea,
2012-09-25, 11:05
|
|
|
Re: Why does giving more JVM memory to lucene make queries run it faster? - Lucene - [mail # user]
|
|
...Most programs in all languages like plenty of memory. If you Google "lucene memory usage" you'll get hits on articles by Lucene developers and plenty more. Some bits may be more ...
|
|
|
Author: Ian Lea,
2012-09-21, 09:15
|
|
|
|