Handling multiple locale

2016-09-23 Thread lukes
Hi all, I am trying to handle multiple locale(for indexing and querying). Below is the problem i am trying to solve. I am indexing list of documents in lucene with naming conventions : (fieldName) + "_" + locale(language part only ex en, ar, ... ) and proving PerFieldAnalyzerWrapper to indexWri

Re: lucene index program won't start after power failure

2016-09-23 Thread Michael McCandless
The 'sync' option for an NFS client just means that every write is sent immediately across the network. And it really is useless performance loss as long as your app (like Lucene) does the "right thing" with fsync. The more important question is why fsync sent to your NFS client and then to the M

Re: Migration from lucene 4.7 to lucene 6.2.1 (4->5 and 5->6 iteratively) => numerics fields are not indexed anymore

2016-09-23 Thread Michael McCandless
Sorry, the upgrade tool does not convert your previous (postings based) numerics to points; you need to reindex to achieve that. Mike McCandless http://blog.mikemccandless.com On Fri, Sep 23, 2016 at 1:01 AM, Ludovic Bertin wrote: > Thanks Mike for your answer. > I do have change the way to in

RE: Upgrade 6.2.x Char* API's

2016-09-23 Thread Uwe Schindler
Hallo Markus, the class is still available, but directly under the analysis package. But It is marked as "internal" and should not be used as it may be removed or changed unexpected. Why do you need it? It does not provide much more than LowerCaseFilter can also do. It is more some utility clas