| clear query|facets|time |
Search criteria: .
Results from 1 to 10 from
31 (0.374s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: Performance of storing data in Lucene vs other (No)SQL Databases - Lucene - [mail # user]
|
|
...Just updated my view in the article.. Feel free to add your comments.. http://www.findbestopensource.com/article-detail/lucene-solr-as-nosql-db Regards Aditya www.findbestopensou...
|
|
|
Author: findbestopensource,
2012-05-22, 08:19
|
|
|
Re: Performance of storing data in Lucene vs other (No)SQL Databases - Lucene - [mail # user]
|
|
...Hi, Lucene is not a data store. You should store data in file system / DB and store only the reference key and data related to display summary results as part of Lucene. Usually ...
|
|
|
Author: findbestopensource,
2012-05-21, 05:07
|
|
|
Re: old fashioned....."Too many open files"! - Lucene - [mail # user]
|
|
...Post complete code. You are not closing the objects (IndexWriter / Index Searcher) properly. Regards Aditya www.findbestopensource.com On Fri, May 18, 2012 at 6:51 AM, Michel Bl...
|
|
|
Author: findbestopensource,
2012-05-18, 05:37
|
|
|
Re: date issues - Lucene - [mail # user]
|
|
...Yes. By storing as String, You should be able to do range search. I am not sure, which is better, storing as String / Integer. Regards Aditya www.findbestopensource.com &n...
|
|
|
Author: findbestopensource,
2012-02-23, 08:19
|
|
|
Re: date issues - Lucene - [mail # user]
|
|
...Hi, You could consider storing date field as String in "YYYYMMDD" format. This will save space and it will perform better. Regards Aditya www.findbestopensource.com On Thu...
|
|
|
Author: findbestopensource,
2012-02-23, 06:51
|
|
|
Re: Is Lucene a good candidate for a Google-like search engine? - Lucene - [mail # user]
|
|
...Check out the presentation. http://java.dzone.com/videos/archive-it-scaling-beyond Web archive uses Lucene to index billions of pages. Regards Aditya www.findbestopensource.com &...
|
|
|
Author: findbestopensource,
2012-01-16, 10:56
|
|
|
Re: Remoting Lucene - Lucene - [mail # user]
|
|
...Hi, One good option is to consider using Solr as it helps to access the index remotely. If you want to use Lucene and you are ready to build your own API then you could have a web appl...
|
|
|
Author: findbestopensource,
2012-01-10, 06:53
|
|
|
Re: Indexing product keys with and without spaces in them - Lucene - [mail # user]
|
|
...Hi Christoph My opinion is, you should not normalize or do any modification to the product keys. This should be unique. Should be used as it is. Instead of spaces you should have only ...
|
|
|
Author: findbestopensource,
2012-01-03, 13:10
|
|
|
Re: Searching for Empty Field - Lucene - [mail # user]
|
|
...Hi Jason, The easiest way would be to set some default value for the field which is empty, Say EMPTY and search for this string to check out the records having empty field. Regar...
|
|
|
Author: findbestopensource,
2011-07-15, 04:52
|
|
|
Re: Concurrent Issue - Lucene - [mail # user]
|
|
...You are trying to access the reader which is already closed by some other thread. 1. Keep a reference count for the reader you create. 2. Have a common function through which all funct...
|
|
|
Author: findbestopensource,
2011-04-07, 06:08
|
|
|
|