Re: Limit Solr to search for only 500 records based on the search criteria

2016-06-27 Thread Thrinadh Kuppili
Thanks Eric for the info. I have figured out a solution to use time allowed parameter and it worked for my need. -- View this message in context: http://lucene.472066.n3.nabble.com/Limit-Solr-to-search-for-only-500-records-based-on-the-search-criteria-tp4282519p4284583.html Sent from the Solr

Re: Limit Solr to search for only 500 records based on the search criteria

2016-06-16 Thread Thrinadh Kuppili
Thanks Eric, Can you please elaborate "I'd also suggest that your response times are tunable" ?? I have set the start to 0 and rows to 1000 initially and entered a search field as below CompanyName : private limited when i clicked on search button in the UI it is not responsive at all. When i r

Limit Solr to search for only 500 records based on the search criteria

2016-06-15 Thread Thrinadh Kuppili
Hi, When i am trying to search in Solr based on given search criteria it is searching all the records which is taking some massive time to complete the Query. I want a solution where i can restrict search to find only till it find 500 records and then solr should stop the querying. Since there

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
Thank you, Yes i am aware that surround with quotes will result in match for space but i am trying to match word based on input which cant be controlled. I need to search solr for %rek Dr% and return all result which has "rek Dr" without qoutes. -- View this message in context: http://lucen

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
Thanks Nick, will look into it. My main moto is to able to search like %xxx xxx% similar to database search of contians with. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-in-solr-for-words-like-rek-Dr-tp4275854p4275970.html Sent from the Solr - User maili

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
I have tried with and search using the Extended Dismax Q= {!dismax qf=address} rek Dr* - It did not work as expected since i am getting all the records which has rek, Dr . Q= {!dismax qf=address} "rek Dr*" - It is not allowed since perfix in Quotes is not allowed. Q= {!complexphrase inOrder=tr

How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
I am trying to search a field named Address which has a space in it. Example : Address has the below values in it. 1. 2000 North Derek Dr Fullerton 2. 2011 N Derek Drive Fullerton 3. 2108 N Derek Drive Fullerton 4. 2100 N Derek Drive Fullerton 5. 2001 N Drive Derek Fullerton Search Query:- Derek

Re: How to search for a First, Last of contact which are stored in differnet multivalued fields

2016-04-14 Thread Thrinadh Kuppili
Thank you Eric Will try it and let you know. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-for-a-First-Last-of-contact-which-are-stored-in-differnet-multivalued-fields-tp4269901p4270192.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to search for a First, Last of contact which are stored in differnet multivalued fields

2016-04-13 Thread Thrinadh Kuppili
Thanks Eric, It tried by indexing with one multivalued field as name but I am not getting the expected result, below are the stored data and query to fetch from solr Name: James_Cook fq = name:Jam* I should be able to search using first name (james) or Last name ( cook) or partial names (jam o

Re: How to search for a First, Last of contact which are stored in differnet multivalued fields

2016-04-13 Thread Thrinadh Kuppili
I will look into it. Thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-for-a-First-Last-of-contact-which-are-stored-in-differnet-multivalued-fields-tp4269901p4270013.html Sent from the Solr - User mailing list archive at Nabble.com.

How to search for a First, Last of contact which are stored in differnet multivalued fields

2016-04-13 Thread Thrinadh Kuppili
Hi, I have created 2 multivalued fields FirstName, Lastname In solr the values available are : FirstName": [ "Kim", "Jake","NATALIE", "Tammey"] LastName": [ "Lara", "Sharan","Taylor", "Taylor"] I am trying to search where firstName is Tammey and LastName is Taylor. I should be able to sea