| clear query|facets|time |
Search criteria: .
Results from 31 to 40 from
926 (0.392s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: Re: Wildcard in a text field - Lucene - [mail # user]
|
|
...So you want a query for "buddhist" to match indexed term "budd*"? Or "bud* or "bu*" or "b*"? Assuming you are using an analyzer that preserves the *, given "buddhist" you could s...
|
|
|
Author: Ian Lea,
2013-02-08, 17:52
|
|
|
Re: Custom score question - Lucene - [mail # user]
|
|
...The score from the main query is passed to the customScore() methods of CustomScoreProvider so you can tweak that as you will. Or, easier, use document boosting to set a low boost for ...
|
|
|
Author: Ian Lea,
2013-02-08, 12:31
|
|
|
Re: How to implement Lucene - Lucene - [mail # user]
|
|
...You're probably better off using Solr which is tightly linked with lucene. http://lucene.apache.org/solr/ I'm sure there are installation and getting started guides there. ...
|
|
|
Author: Ian Lea,
2013-02-05, 13:30
|
|
|
Re: How to properly use updatedocument in lucene. - Lucene - [mail # user]
|
|
...There is no way to update without reindexing the entire document. It might be less confusing if the IndexWriter.updateDocument() methods were called maybe replaceDocument() but they're...
|
|
|
Author: Ian Lea,
2013-02-01, 09:42
|
|
|
Re: Migration to Lucene 4.1 - Lucene - [mail # user]
|
|
...Have you read the changes and migration docs that come with 4.1? You may also need to look at 3.[123456] javadocs to see deprecations and alternatives for stuff that was present in 3.0...
|
|
|
Author: Ian Lea,
2013-01-30, 09:47
|
|
|
Re: CompressingStoredFieldsFormat doesn't show improvement - Lucene - [mail # user]
|
|
...Fair point, but with such small numbers per index any variation between versions is likely to just be noise. It is also certainly possible that on your index the compressing format may...
|
|
|
Author: Ian Lea,
2013-01-29, 14:10
|
|
|
Re: update index for user defined types - Lucene - [mail # user]
|
|
...Well, lucene is a java API so if you can make java calls from an Oracle stored procedure, maybe you can make it work. Sounds a terrible idea to me, but then using Oracle is, in my opin...
|
|
|
Author: Ian Lea,
2013-01-29, 13:45
|
|
|
Re: CompressingStoredFieldsFormat doesn't show improvement - Lucene - [mail # user]
|
|
...I make that about 15Mb of data - trivial. What happens if you make each field 400 chars and index a million or two? If you really have that few docs, what are you worrying about?...
|
|
|
Author: Ian Lea,
2013-01-29, 13:39
|
|
|
Re: update index for user defined types - Lucene - [mail # user]
|
|
...Please try and phrase your question in terms of lucene. Oracle? What's that? User defined type? What's that? IndexWriter has various updateDocuments() methods. I usua...
|
|
|
Author: Ian Lea,
2013-01-29, 09:09
|
|
|
Re: Large Index Query Help! - Lucene - [mail # user]
|
|
...Lucene won't load the whole index into memory. See http://blog.thetaphi.de/2012/07/use-lucenes-mmapdirectory-on-64bit.html What version of lucene? How are you opening index...
|
|
|
Author: Ian Lea,
2013-01-29, 09:02
|
|
|
|