silverstripe-fulltextsearch/code/solr/Solr3Service.php
Hamish Friedlander 3d18903552 API Add support for Solr 4 and make it the default
Solr::configure_server now takes "version" as one of the keys in the
option array, and behaves slightly differently depending on whether
that version is 3 or 4, to provide support for both Solr versions.

The Solr extras and templates have also moved, so that different
versions can be provided for the two different Solr versions.
2013-11-08 15:03:47 +13:00

9 lines
155 B
PHP

<?php
class Solr3Service_Core extends SolrService_Core {
}
class Solr3Service extends SolrService {
private static $core_class = 'Solr3Service_Core';
}