Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 981 Bytes

UPGRADING.md

File metadata and controls

44 lines (36 loc) · 981 Bytes

Upgrading the find extension

Solarium upgrade

The underlying solarium library has been updated. Find tries so do this as smooth as possible for you.

Solr has a slightly changed syntax for connecting now, see here.

This is the actual syntax:

plugin.tx_find.settings {
    connections {
        default {
            options {
                host = solr.local
                port = 8983
                path = /
                scheme = http
                core = myIndex
            }
        }
    }
}

The connection configuration below may still work, but a deprecation notice is thrown - so please change the settings.

plugin.tx_find.settings {
    connections {
        default {
            options {
                host = solr.local
                port = 8080
                path = /solr/myIndex
            }
        }
    }
}