Highlighting search result without using solrnet code with SOLR 4.1

2014-06-17 Thread kobe.free.wo...@gmail.com
Hi, I want to highlight the search results without using Highlighligting Parameters provided by Solrnet. following is my configuration for highlighting parameters. Here is my Schema.xml field name=guid type=text_en indexed=true stored=true/ field name=title type=text_en indexed=true stored=true

Fetch Unique Values

2013-10-14 Thread kobe.free.wo...@gmail.com
Hi, I wish to execute a Solr query and fetch first 10,000 unique records based on a field. How do I achieve this in Solr? I am using 4.2.0 version. Thanks in advance! -- View this message in context: http://lucene.472066.n3.nabble.com/Fetch-Unique-Values-tp4095371.html Sent from the Solr -

Re: Search with punctuations

2013-07-17 Thread kobe.free.wo...@gmail.com
Hi Erick, I modified the SOLR schema file for the field as follows and re-indexed the schema, fieldType name=CustomStr class=solr.TextField positionIncrementGap=100 sortMissingLast=true analyzer type=index tokenizer class=solr.KeywordTokenizerFactory/ filter

Re: Search with punctuations

2013-07-15 Thread kobe.free.wo...@gmail.com
Hi Erick, Thanks for your reply! I have tried both of the suggestions that you have mentioned i.e., 1. Using WhitespaceTokensizerFactory 2. Using WordDelimiterFilterFactory with catenateWords=1 But, I still face the same issue. Should the tokenizers/ factories used must be the same for both

Search with punctuations

2013-07-12 Thread kobe.free.wo...@gmail.com
Hi, Scenario: User who perform search forget to put punctuation mark (apostrophe) for ex, when user wants to search for a value like INT'L, they just key in INTL (with no punctuation). In this scenario, I wish to return both values with INTL and INT'L that currently are indexed on SOLR

Re: Searching for terms having embedded white spaces like word1 word2

2013-05-18 Thread kobe.free.wo...@gmail.com
Thank you so very much Jack for your prompt reply. Your solution worked for us. I have another issue in querying fields having values of the sort stringThis is good/stringstringThis is also good/stringstringThis is excellent/string. I want to perform StartsWith as well as 'Contains searches on

Searching for terms having embedded white spaces like word1 word2

2013-05-17 Thread kobe.free.wo...@gmail.com
Hi Guys, I have a field defined with the following custom data type, fieldType name=cust_str class=solr.TextField positionIncrementGap=100 sortMissingLast=true analyzer type=index tokenizer class=solr.StandardTokenizerFactory/ filter class=solr.StopFilterFactory

RE: SOLR - Unable to execute query error - DIH

2013-03-28 Thread kobe.free.wo...@gmail.com
Thanks James. We have tried the following options *(individually)* including the one you suggested, 1.selectMethod=cursor 2. batchSize=-1 3.responseBuffering=adaptive But the indexing process doesn't seem to be improving at all. When we try to index set of 500 rows it works well gets completed

SOLR - Unable to execute query error - DIH

2013-03-25 Thread kobe.free.wo...@gmail.com
Hello All, I am trying to index data from SQL Server view to the SOLR using the DIH with full-import command. The view has 750K rows and 427 columns. During the first execution i indexed only the first 50 rows of the view, the data got indexed in 10 min. But, when i executed the same scenario to

Re: SOLR - Unable to execute query error - DIH

2013-03-25 Thread kobe.free.wo...@gmail.com
In context of the above scenario, when i try to index set of 500 rows, it fetches and indexes around 400 odd rows and then it shows no progress and keeps on executing. What can be the possible cause of this issue? If possible, please do share if you guys have gone through such scenario with the

SOLR - Documents with large number of fields ~ 450

2013-03-21 Thread kobe.free.wo...@gmail.com
Hello All, Scenario: My data model consist of approx. 450 fields with different types of data. We want to include each field for indexing as a result it will create a single SOLR document with *450 fields*. The total of number of records in the data set is *755K*. We will be using the features