Re: How to tell which core was used based on Json or XML response from Solr

2019-11-24 Thread Erik Hatcher
add ==all and the parameter will be in the response header. Erik > On Nov 22, 2019, at 13:27, rhys J wrote: > > I'm implementing an autocomplete search box for Solr. > > I'm using JSON as my response style, and this is the jquery code. > > > var

Re: Backup v.s. Snapshot API for Solr

2019-11-24 Thread Kayak28
Hello, Mr. Paras: Thank you for your response, and I apologize for confusing you. Actually, I can do restore by /replication hander. What I did not get the idea is, how to use the following URLs, which are from the "Making And Restoring Backups" section of the Solr Reference Guide. 1.

Re: Type of auto suggest feature

2019-11-24 Thread Paras Lehana
Hey Artur, If I have understood correctly, you want to suggest terms related to the query. It would be helpful if you describe the use case as well. Anyways, please go through this once: 1. Keep different form of words as different documents so that they could be suggested ("closed",

Re: How to tell which core was used based on Json or XML response from Solr

2019-11-24 Thread Paras Lehana
Hey rhys, What David suggested is what we do for querying Solr. You can figure out our frontend implementation of Auto-Suggest by seeing the AJAX requests fired when you type in the search box on www.indiamart.com. Why are you using two jQuery files? If you have a web server, you already know

Re: Backup v.s. Snapshot API for Solr

2019-11-24 Thread Paras Lehana
Hey Kaya, Are you not able to restore with the same restore backup command? http://localhost:8983/solr/gettingstarted/replication?command=restore=backup_name Replace backup_name with the snapshot name. On Fri, 22 Nov 2019 at 11:26, Kayak28 wrote: > Hello, Community Members: > > I have

Re: Highlighting on typing in search box

2019-11-24 Thread Paras Lehana
Hi rhys, You are actually looking for an autocomplete! I work for the Auto-Suggest (different names for the same thing) team at Indiamart. Although we have a long journey making our Auto-Suggest one of the fastest on the internet, I hope this summary will help you. You can always connect with me

Re: About Snapshot API and Backup for Solr Index

2019-11-24 Thread Paras Lehana
Hey Kaya, Are you not able to restore with the same restore backup command? http://localhost:8983/solr/gettingstarted/replication?command=restore=backup_name Replace backup_name with the snapshot name. On Thu, 21 Nov 2019 at 16:23, Kayak28 wrote: > I was not clear in the last email. > I

Re: Solr 4 to Solr7 migration DIH behavior change

2019-11-24 Thread Mikhail Khludnev
Config makes sense to me. The only unusual thing is tailing semicolons in SQL statements. What if you drop them? On Sun, Nov 24, 2019 at 11:30 PM Shashank Bellary wrote: > Thanks Mikhail, data config is on the thread above. I’ll share again if > you can’t find it > > Get Outlook for

Re: Solr 4 to Solr7 migration DIH behavior change

2019-11-24 Thread Shashank Bellary
Thanks Mikhail, data config is on the thread above. I’ll share again if you can’t find it Get Outlook for iOS From: Mikhail Khludnev Sent: Sunday, November 24, 2019 2:51:40 PM To: solr-user Subject: Re: Solr 4 to Solr7 migration DIH

Re: Solr 4 to Solr7 migration DIH behavior change

2019-11-24 Thread Mikhail Khludnev
Hello, Shashank. The error seems similar, but I didin't find an old issue with such error. I've found only one abandoned thread in the mailing list. ='17' seems suspicious to me, usually it should be done via prepared statement. Have no thoughts, maybe you can share you data config? On Sun, Nov

Re: Solr 4 to Solr7 migration DIH behavior change

2019-11-24 Thread Shashank Bellary
Any thoughts guys? I tried with mysql driver v8 also, still no luck On 11/22/19, 3:00 PM, "Jörn Franke" wrote: Note - This message originated from outside Care.com - Please use caution before opening attachments, clicking on links or sharing information. Did you update the java

Type of auto suggest feature

2019-11-24 Thread Rudenko, Artur
Hi, I am quite new to solr and I am interested in implementing a sort of auto terms suggest (not auto complete) feature based on the user query. Users builds some query (on multiple fields) and I am trying to help him refining his query by suggesting to add more terms based on his current query.