Re: Index data from mysql DB to Solr - From Scratch

2018-02-17 Thread Gora Mohanty
On 18 February 2018 at 08:18, @Nandan@ wrote: > Thanks Rick. > Is it possible to get some demo learning video link or web links from > where I can get overview with real example? > By which I can able to know in more details. > Searching Google for "Solr index data database" turns up many links

Re: Index data from mysql DB to Solr - From Scratch

2018-02-17 Thread @Nandan@
Thanks Rick. Is it possible to get some demo learning video link or web links from where I can get overview with real example? By which I can able to know in more details. On Feb 18, 2018 4:11 AM, "Rick Leir" wrote: > Nandan > Work backwards from your results screen. When a user has done a sear

Re: Index data from mysql DB to Solr - From Scratch

2018-02-17 Thread Rick Leir
Nandan Work backwards from your results screen. When a user has done a search, what information would you like to appear on the screen? That tells you what your Solr document needs to contain. How will you get that information into the Solr document? You will do the SQL select(s) as necessary,

Re: Index data from mysql DB to Solr - From Scratch

2018-02-17 Thread @Nandan@
Hi David , Thanks for your reply. My few questions are :- 1) I have to denormalize my MySQL data manually or some process is there. 2) is it like when Data will insert into my MySQL , it has to auto index into solr ? Please explain these . Thanks On Feb 18, 2018 1:51 AM, "David Hastings" wrote:

Re: Index data from mysql DB to Solr - From Scratch

2018-02-17 Thread David Hastings
Your first step is to denormalize your data into a flat data structure. Then index that into your solr instance. Then you’re done On Feb 17, 2018, at 12:16 PM, @Nandan@ mailto:nandanpriyadarshi...@gmail.com>> wrote: Hi Team, I am working on one e-commerce project in which my data is storing int

Index data from mysql DB to Solr - From Scratch

2018-02-17 Thread @Nandan@
Hi Team, I am working on one e-commerce project in which my data is storing into MySQL DB. As currently we are using mysql search but planning to implement Solr search to provide our customers more facilities. Just for development purpose ,I am trying to do experiments into localhost. Please guide