3
votes
2answers
34 views
What is the best way to search multiple sources simultaneously?
I'm writing a phonebook search, that will query multiple remote sources but I'm wondering how it's best to approach this task.
The easiest way to do this is to take the query, sta …
0
votes
3answers
81 views
Is Solr available for .Net?
I want to learn Solr.May i know some good tutorial/links for the same?
Is Solr available for .net too?
4
votes
2answers
80 views
Can Lucene return several search results from a single indexed file?
I am using Lucene to index and search a small number of large documents. Using the demo from the Lucene site I have indexed the documents and am able to search them. However, the s …
0
votes
2answers
64 views
Katta usage examples
Does anybody use Katta with Java? Are any samples avalible?
0
votes
1answer
19 views
configuring nutch regex-normalize.xml
I am using the Java-based Nutch web-search software. In order to prevent duplicate (url) results from being returned in my search query results, I am trying to remove (a.k.a. norma …
0
votes
0answers
13 views
Zend Search Lucene numerical range searches
Hi all,
I am having difficulty determining my misunderstanding of how Zend Search Lucene indexes and searches integers in ranges.
In the following example, I would expect the out …
0
votes
1answer
21 views
How to configure SOLR to use Levenshtein approximate string matching?
Does Apaches Solr search engine provide approximate string matches, e.g. via Levenshtein algorithm?
I'm looking for a way to find customers by last name. But I cannot guarantee th …
1
vote
2answers
42 views
Different lucene search results using different search space size.
I have an application that uses lucene for searching. The search space are in the thousands. Searching against these thousands, I get only a few results, around 20 (which is ok and …
1
vote
2answers
55 views
Using lucene in Tomcat
Background
I am assuming the following code is completely thread safe:
// Called from a servlet when a user action results in the index needing to be updated
public static void r …
4
votes
3answers
93 views
How far behind the original is Lucene.Net?
I've noticed that Lucene recently released v2.9 (on 25th September this year - 2009), whereas Lucene.Net appears to be v2.0 (released back in 2007):
Does the v2.0 of Lucene.net c …
1
vote
1answer
74 views
Lucene trouble with indexing recurring events
Hi,
I'm trying to come up with a way to query dates in Lucene. Basically I have an event that has a start date, end date and can also occur regularly. The way I tried to go about i …
3
votes
2answers
45 views
Problem with Lucene scoring
I have a problem with Lucene's scoring function that I can't figure out. So far, I've been able to write this code to reproduce it.
package lucenebug;
import java.util.Arrays;
im …
1
vote
1answer
37 views
indexing services for websites: lucene, and other options
Hey guys
Just looking for some search and indexing services for our sites, and wondered if you guys could recommend anything?
our requirements:
The service can either index via …
2
votes
2answers
36 views
How to apply default sorting in lucene on equal scores?
Good day,
If I have for example the documents which have the following fields
Person_name - Birthday
Jordan - 2009-06-15
Marc - 2009-01-01
Marcos - 2009-01-01
Marcissh_something_ …
1
vote
1answer
43 views
Adding fuzziness to a lucene query
Is there a simple way to add a fuzziness level to a user entered search query in lucene, I'd like to avoid having to parse their entered text if possible.
At present if they enter …
