match « Development « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » Development » match 

1. How to use n-grams approximate matching with Solr?    stackoverflow.com

We have a database of movies and series, and as the data comes from many sources of varying reliability, we'd like to be able to do fuzzy string matching on the ...

2. Retrieving per keyword/field match position in Lucene Solr -- possible?    stackoverflow.com

Is there any way to retrieve the match field/position for each keyword for each matching document from solr? For example, if the document has title "Retrieving per keyword/field match position in Lucene ...

3. How to configure SOLR to use Levenshtein approximate string matching?    stackoverflow.com

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 the correctness of the ...

4. SOLR How to return only limited matched content    stackoverflow.com

ok guys, say in my Schema I have 4 fields:

<field name="SiteIdentifier" type="string" indexed="true" stored="true" required="true"/>
<field name="Title" type="text" indexed="true" stored="true"/>
<field name="Content" type="text" indexed="true" stored="true"/>
<field name="URL" type="text" indexed="true" stored="true"/>
Is there some kind of ...

5. Solr Searching, Numeric Matching and Relevance    stackoverflow.com

I'll just start with the use case. Say I'm searching for a product with a price of $500. I don't necessarily mind if it costs slightly more, or slightly less, but ...

6. Refining Solr searches, getting exact matches?    stackoverflow.com

Afternoon chaps, Right, I'm constructing a fairly complex (to me anyway) search system for a website using Solr, although this question is quite simple I think... I have two search criteria, location ...

7. How to do partial beginning matches in Solr?    stackoverflow.com

I'm trying to search for partial beginning matches on a big list of lastnames. So Wein* should find Weinberg, Weinkamm etc. I could do this by creating a special field, and adding <filter ...

8. Substring matches within SOLR    stackoverflow.com

I can't seem to figure out how to find substring matches with SOLR, I've figured out matches based on a prefix so I can get ham to match hamburger. How would ...

9. Finding the start and end of a match with Lucene    stackoverflow.com

I would like to find the start and end positions of a match from a lucene (Version 3.0.2 for Java) query. It seems like I should be able to get ...

10. Solr Minimum Match not working?    stackoverflow.com

In my solrconfig.xml I specify a mm of 100% yet, searches with multiple terms, still show results that only match some of the search terms. If I explicitly put a + ...

11. How to get total match count in Solr/lucene    stackoverflow.com

I have a problem that i want to get total count of matched text in solr. but when i want to perform search using solr i have to set max rows parameter. ...

12. Calling search gurus: Numeric range search performance with Lucene?    stackoverflow.com

I'm working on a system that performs matching on large sets of records based on strings and numeric ranges, and date ranges. The String matches are mostly exact matches as far ...

13. get matched keywords in lucene    stackoverflow.com

how can i get the matched words from lucene. I can get the hits but i want to know the words that matched..any idea??

14. Solr Partial And Full String Match     stackoverflow.com

I am trying to allow searches on partial strings in Solr so if someone searched for "ppopota" they'd get the same result as if they searched for "hippopotamus." I read the ...

15. How to match against subsets of a search string in SOLR/lucene    stackoverflow.com

I've got an unusual situation. Normally when you search a text index you are searching for a small number of keywords against documents with a larger number of terms. For example ...

16. Get words corresponding to a match from SpanNearQuery in Lucene    stackoverflow.com

I would need to retrieve the words in my text that correspond to a match of Spans returned by SpanNearQuery.getSpans(). For instance, if my text is [a b c d e ...

17. Data structure for Pattern Matching on large data    stackoverflow.com

Problem Background I have a finite vocabulary containing of say 10 symbols [A-J]. What these symbols mean is not relevant to the question. They could be DNA bases, phonemes, words etc. An item ...

18. Regex multiple matches and $1, $2 variables (quick and easy!)    stackoverflow.com

I need to extract numeric values from strings like "£17,000 - £35,000 dependent on experience"

([0-9]+k?[.,]?[0-9]+)
That string is just an example, i can have 17k 17.000 17 17,000, in every string there ...

19. Solr admin interface analysis results and solr search results do not match    stackoverflow.com

There are 6 indexed document in Solr with the text field "name_texts". The Admin UI highlights field value when it is "blue-cat" and the search term is "blueCat". But the search ...

20. SOLR - Exact Matching with Phrase and Boolean Search    stackoverflow.com

We need some help getting our SOLR deployment to work with EXACT MATCH search capability. Specifically, we have a text type field in the schema and we want to apply an Exact ...

21. What did Solr match on?    stackoverflow.com

Is it somehow possible to figure out what Solr match on? Like this for example.

class Movie < ActiveRecord::Base
  searchable do
    text :title
    text :actors do
 ...

22. How to tweak Solr Matching Parameters?    stackoverflow.com

I'm using Solr for the search component of my application, and am looking to play around with different factors to see how it affects results. Specifically Solr docs make mention of the ...

23. match any part of a URL in lucene    stackoverflow.com

Presently i am using PrefixQuery it's working fine but it get's a record like if my url is http://xyz.com then it will get http://xyz.com and http://xyz.com/service/... but ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.