Skip to content

2.3 - Solr Rewrite

Latest
Compare
Choose a tag to compare
@inghamn inghamn released this 02 Jul 14:43
· 6 commits to master since this release

This release is a rewrite of the Solr code, now using Solarium instead of the obsolete library we had been using. This is a source code change only and does not require reindexing of Solr.

Site Config Changes

This release requires a small change to the site_config.inc for the SOLR_SERVER settings. Make sure to review the new SOLR_SERVER settings in /data/site_config.inc.example

<?php
define('SOLR_SERVER_HOST', 'localhost');
define('SOLR_SERVER_PORT', 8983);
define('SOLR_SERVER_CORE', 'ureport');

Database Changes

There is a small change to a field in the bookmarks table. The requestUri column was expanded to allow for longer bookmark urls. The database migration script is /scripts/migration/2.2-2.3/databaseChanges.sql.

alter table bookmarks modify requestUri varchar(1024) not null;

Change Log

https://github.com/City-of-Bloomington/uReport/milestone/18?closed=1