ezplatform-solr-search-engine

UNIX name Owner Status
ezplatform-solr-search-engine 7x stable
Version Compatible with
N/A N/A
Solr powered search handler for eZ Platform (and branch 1.0 for eZ Publish 5.4)

Solr Search Engine Bundle for eZ Platform

Solr Search Engine Bundle for use with:

  • v1.6+: eZ Platform 2.5LTS+ (bundled out of the box) with Solr 6.x (recommended: 6.6 which is an LTS)
  • v1.5: eZ Platform 1.7LTS & 1.13LTS (bundled out of the box) with Solr 6.x or 4.10.4 (recommended: 6.6 which is an LTS, and certain features only work on Solr 6)
  • v1.0.x: eZ Publish Platform Enterprise 5.4.5+ (optional, not as feature rich but helpful for scaling filtering queries) with Solr 4.10.4
Overview of features

Feature

Solr Search Engine

Legacy Search Engine (SQL)

Filtering

Yes

Yes, but limited*

Query (filter with scoring)

Yes

Only filters, no scoring

Fulltext

Yes, incl advance features

Partly**

Faceting

Partly as of v1.4

No

Spellchecking

Planned (TBD when)

No

Highlighting

Planned (TBD when)

No

Index time boosting

Yes, as of v1.4

No

* Usage of Criterion and SortClause for Fields does not perform well on medium to larger amount of data with Legacy
Search Engine (SQL), use Solr for this.

** Does not include full set of full text features includes: Scoring/Ranking (Solr Search Engine does sorting on scoring
by default, for location search available as of v1.3 with Solr 6.x), and as of Solr Search Engine v1.5
supports advanced full text capabilities such as word "phrase" (group) +mandatory -prohibited AND && OR || NOT !

Install

For how to install and configure see:

Testing locally

For Contributing to this Bundle, you should make sure to run both unit and integration tests (from ezpublish-kernel repo).

  1. Setup this repository locally

    git clone git@github.com:ezsystems/ezplatform-solr-search-engine.git solr
    cd solr
    composer install

    At this point you should be able to run unit tests:

    php vendor/bin/phpunit --bootstrap tests/bootstrap.php
  2. Get & extract Solr

    E.g. one of the following:

  3. Configure Solr (single core)

    Note: See .travis.yml and bin/.travis/init_solr.sh for multi core setups

    # Solr 6
    cd solr-6.6.5
    mkdir -p server/ez/template
    cp -R /lib/Resources/config/solr/* server/ez/template
    cp server/solr/configsets/basic_configs/conf/{currency.xml,solrconfig.xml,stopwords.txt,synonyms.txt,elevate.xml} server/ez/template
    cp server/solr/solr.xml server/ez
    ## Modify solrconfig.xml to remove section that doesn't agree with our schema
    sed -i.bak '//,/<\/updateRequestProcessorChain>/d' server/ez/template/solrconfig.xml

    Note that Solr Bundle does not commit changes directly on repository updates,
    which can lead to issues of content not showing up in the index. You can control this by adjusting autoSoftCommit (visibility
    of change to search index) and autoCommit (hard commit, for durability and replication) values in solrconfig.xml.

    Example of working solrconfig.xml settings that you can use to tune for your needs, change from defaults is on autoSoftCommit from -1 (disabled) to 20ms:


    ${solr.autoCommit.maxTime:15000}
    false



    ${solr.autoSoftCommit.maxTime:20}

    You may also use the command line tool bin/generate-solr-config.sh to generate the Solr 6 configuration instead of these instructions.
    This is particular convenient if deploying to eZ Platform Cloud (Platform.sh), but can also be used for on-premise installs.

    The script should be executed from the eZ Platform root directory, run the following for more info:

    ./vendor/ezsystems/ezplatform-solr-search-engine/bin/generate-solr-config.sh --help
  4. Start Solr

    # Solr 6
    cd solr-6.6.5
    bin/solr -s ez
    ## You'll also need to add cores on Solr 6, this adds single core setup:
    bin/solr create_core -c collection1 -d server/ez/template
  5. Run integration tests

    export CORES_SETUP="single"
    php -d memory_limit=-1 vendor/bin/phpunit --bootstrap tests/bootstrap.php -vc vendor/ezsystems/ezpublish-kernel/phpunit-integration-legacy-solr.xml

Copyright & license

Copyright eZ Systems AS, for copyright and license details see provided LICENSE file.

No news yet.

This project has no reviews yet. Be the first one to review it!

No forum messages yet.