Re: Storing data in Solr

2017-08-07 Thread sg1973
I have written the code to publish to Solr but i am wondering what is the right way to do it. Is directly putting data in Solr OK or putting it in a separate cache and then building solr on top of it? what are the pros and cons of each? -- View this message in context: http://lucene.472066.n3.n

Storing data in Solr

2017-08-07 Thread sg1973
Hello All, I am new to Solr and have a question. I have to load about 1 million records from a DB table (with say 30 columns/row) and then run various search queries on it. I see 2 ways to do it. Store the data directly in Solr versus store in in a cache and then search on it using Solr. I am tryin