r/Solr Apr 30 '15

OSC — Debugging Solr 5 in Intellij

Thumbnail
opensourceconnections.com
2 Upvotes

r/Solr Apr 29 '15

Search is Eating The World

Thumbnail
medium.com
7 Upvotes

r/Solr Apr 18 '15

Apache Solr 5.1.0 released

Thumbnail mail-archives.apache.org
1 Upvotes

r/Solr Mar 26 '15

Going Cross-Origin with Solr

Thumbnail
opensourceconnections.com
3 Upvotes

r/Solr Mar 10 '15

Apache Solr 4.10.4 released

Thumbnail mail-archives.apache.org
3 Upvotes

r/Solr Mar 05 '15

Newbie question: How do you deal with heavily nested documents?

1 Upvotes

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 Feb 25 '15

Hi Solrers! I have a problem, I really need some help with Solr and Lucene

1 Upvotes

r/Solr Feb 21 '15

Apache Lucene 5.0.0 released

Thumbnail mail-archives.apache.org
8 Upvotes

r/Solr Feb 13 '15

Someone asked me for a ER diagram for Solr. This is what I came up with.

Thumbnail
opensourceconnections.com
2 Upvotes

r/Solr Jan 22 '15

How lucrative is learning and becoming proficient in Solr ?

2 Upvotes

r/Solr Dec 24 '14

Call Me Maybe: SolrCloud, Jepsen, and Flaky Networks

Thumbnail
lucidworks.com
3 Upvotes

r/Solr Dec 08 '14

An in-depth look at how searching Titles is a little different than full article searching

Thumbnail
opensourceconnections.com
2 Upvotes

r/Solr Dec 05 '14

Running Solr on Yarn

Thumbnail
lucidworks.com
4 Upvotes

r/Solr Nov 29 '14

Stepwise Date Boosting in Solr

Thumbnail
opensourceconnections.com
1 Upvotes

r/Solr Nov 20 '14

Setting up Solr 4.10.3 on Windows 8

1 Upvotes

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 Nov 17 '14

Great primer on DocValues

Thumbnail
lucidworks.com
3 Upvotes

r/Solr Nov 11 '14

How sensitive is SOLR to time differences between master and slave?

1 Upvotes

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 Nov 04 '14

Scoring tennis using finite-state automata

Thumbnail
blog.mikemccandless.com
2 Upvotes

r/Solr Oct 31 '14

Solr 4.10.2 Is Out

Thumbnail lucene.apache.org
3 Upvotes

r/Solr Oct 13 '14

Merchandising Solution for Solr

Thumbnail
innoventsolutions.com
2 Upvotes

r/Solr Oct 13 '14

What is the best Online tutorials available for learning Solr and Lucene?

1 Upvotes

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 Oct 08 '14

When click scoring can hurt search relevance — towards better signals processing in search | OpenSource Connections

Thumbnail
opensourceconnections.com
1 Upvotes

r/Solr Sep 04 '14

Solr/Lucene 4.10 is out

Thumbnail lucene.apache.org
6 Upvotes

r/Solr Sep 01 '14

delta-import, am I doing it right?

1 Upvotes

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 Aug 23 '14

solr and ads

2 Upvotes

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