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 Following is configuration for solrconfig.xml on fulltext title html simple s 0 title 0 title

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 - Us

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 instance.

Re: Search with punctuations

2013-07-14 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 "

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, My previous scenario seems to be working fine i.e., when I

SOLR - Documents with large number of fields ~ 450

2013-03-20 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 li

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 i

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 res

RE: SOLR - "Unable to execute query" error - DIH

2013-03-27 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 comp

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, This field has values like "SAN MIGUEL","SAN JUAN","SAN DIEGO" etc. I wish to perform a "Starts With" and "Contains" search on

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 This is goodThis is also goodThis is excellent. I want to perform "StartsWith" as well as 'Contains" searches on this field. The field definition is as