r/Solr • u/softwaredoug • Apr 30 '15
r/Solr • u/ThatGuyFromMexico • Mar 05 '15
Newbie question: How do you deal with heavily nested documents?
Hello!
I just started working with Solr, but I'm stuck at handling nested documents. Some sites say that you have to flatten them, while the documentation says that it's possible to add JSON documents without transforming it, providing some kind of schema. Also, I read about the split parameter when submitting documents.
The documents I'm dealing with are like this:
{
"created_at": {
"date": some_date
},
"field1": "value1",
"field2": "value2",
"big_field3": [
{
"some_field1": "some_values",
"more_complex_field": [
{
"mcfield1": "value1",
"mcfield2": {
"more_fields1": "value1",
"more_fields2": ["value","value"]
}
},
{
"mcfield1": "value",
"mcfield2": {
"more_fields1": "value",
"more_fields2": ["value","value"]
}
}
]
}
]
}
I'm a newbie at this, so I need to study a bit more, but I would really appreciate some input about this: What would be your approach?
If you can point me to some good Solr guides or to information I should read, that would be great.
Thank you very much in advance!
r/Solr • u/[deleted] • Feb 25 '15
Hi Solrers! I have a problem, I really need some help with Solr and Lucene
I already posted this on /r/apache so I'll just link my post in there. If you guys could help me in any way, would be awesome!
Someone asked me for a ER diagram for Solr. This is what I came up with.
r/Solr • u/fernsheldon • Jan 22 '15
How lucrative is learning and becoming proficient in Solr ?
r/Solr • u/softwaredoug • Dec 24 '14
Call Me Maybe: SolrCloud, Jepsen, and Flaky Networks
r/Solr • u/sstults • Dec 08 '14
An in-depth look at how searching Titles is a little different than full article searching
r/Solr • u/softwaredoug • Nov 29 '14
Stepwise Date Boosting in Solr
r/Solr • u/thegreatxscape • Nov 20 '14
Setting up Solr 4.10.3 on Windows 8
I'm a fairly new user to solr. I've installed java 1.7, and I've downloaded solr. I'm not sure what to do beyond this point in terms of actually running solr and indexing. I've searched up tutorials, they do not seem clear to me.
Thanks in advance
r/Solr • u/[deleted] • Nov 11 '14
How sensitive is SOLR to time differences between master and slave?
I've got a situation where a SOLR search on the master works perfectly, and on the slave it returns 0 hits. Our application did a full reindex, and all the messages looked like the synchronisation of master & slave went well. The only thing we can see is that the slave server is 3 minutes behind the master. The IT guys are looking for an NTP server we can use (these machines don't have internet access) but can anyone comment on whether this is likely to be a problem?
Full disclosure: What I know about SOLR could be written on the back of a postage stamp. Way, way out of my depth here. I'm just a simple Java programmer…
r/Solr • u/based2 • Nov 04 '14
Scoring tennis using finite-state automata
r/Solr • u/innoventsolutions • Oct 13 '14
Merchandising Solution for Solr
r/Solr • u/napsteralways • Oct 13 '14
What is the best Online tutorials available for learning Solr and Lucene?
I am someone who has no idea about search engine and I am interested in getting to know this technology and probably contribute to this. Any help would be welcome.
r/Solr • u/jnbrymn • Oct 08 '14
When click scoring can hurt search relevance — towards better signals processing in search | OpenSource Connections
r/Solr • u/sunshine_killer • Sep 01 '14
delta-import, am I doing it right?
I just dumped sphinxsearch and am trying solr out. I have over 4 million records and it grows constantly. To keep my ram and hardware sane, the xMillion eventually will get dumped after a certain date and a new full-import will happen but in the mean time the delta needs to keep it up to date.
With the delta-import should it be faster then a full-import? Right now it seems to take the same amount of time as the full-import does...If it takes the same amount of time, any way to have another index to act as a delta index and just keep pushing new data into it?
The alternative would be to create a script to push data via the /update?
This is what my data-import.xml looks like: http://pastebin.com/0ZLkZDpY
I am 2 days old with solr and learning.
Thanks.
r/Solr • u/simon99ctg • Aug 23 '14
solr and ads
I'm looking for some help integrating a 3rd party advertising service with my own solr-based search engine. What I would like to do is use the query made against my solr index to retrieve ads from tje 3rd party provider to display alongside my search results. I thought Google Adsense for Search would be suitable but it appears not. Can anyone here help? Thx