Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is difference between Solr 1.4 and Solr 3.4

mostly its recommended download apache-solr 1.4.1 from http://mirror.lividpenguin.com/pub/apache//lucene/solr/

can you please tell, difference between solr-1.4.1 and 3.4.0? which one i should use?

EDIT: Thanks for help aix, Rayan, Jayendra. I cant tick any as answer, because all are correct. i hope i could tick all answers correct......:) Thanks again

like image 495
innocent Avatar asked Oct 07 '11 16:10

innocent


People also ask

What is the latest version of Solr?

Solr 9.0. 00 is the most recent Apache Solr release.

How do I find my Solr version?

On the Solr Admin page click on [INFO]. The next screen will have the version.

What version of Lucene does Solr use?

Lucene/Solr 8. If using 8.0, you should test in your environment.

What is Solr used for?

Solr is an open-source search platform which is used to build search applications. It was built on top of Lucene (full text search engine). Solr is enterprise-ready, fast and highly scalable. The applications built using Solr are sophisticated and deliver high performance.


2 Answers

If you don't know you need to go with 1.4.1, choose 3.4.

Seconding what aix said, looking at the changelog, the highlights of 3.4 over 1.4.1 for me are (from the Solr home page):

  • Solr 3.4
    • Post-group faceting option (group.truncate) can now compute facet counts for only the highest ranking documents per-group. (SOLR-2665).
  • Solr 3.3
    • Grouping / Field Collapsing
  • Solr 3.1
    • Numeric range facets (similar to date faceting).
    • New spatial search, including spatial filtering, boosting and sorting capabilities.
    • Extended dismax (edismax) query parser with support for fielded queries, enhanced relevancy, and full lucene syntax support.
    • Distributed search support for the Spell check and Terms components.
    • Sort results by any function query.
    • JSON document indexing.

And, of course bug fixes all around and a newer Lucene. And, if you are doing any faceting, then Solr 3.4 is strongly recommended -- search on "Solr3" to see all the facet features not available in Solr 1.4. The date / range faceting is vastly superior in 3.4.

like image 76
Ryan Roemer Avatar answered Oct 07 '22 11:10

Ryan Roemer


You can find out the differences for yourself by examining the changelog.

As to which version to use, in the absence of reasons to the contrary it probably makes sense to go with the more recent version.

like image 44
NPE Avatar answered Oct 07 '22 11:10

NPE