From 05d6b040c53e82d19603f4d88319718e932038bc Mon Sep 17 00:00:00 2001 From: "E. Lynette Rayle" Date: Wed, 30 May 2018 17:26:10 -0400 Subject: [PATCH] update for release rc4 --- README.md | 11 +++++++++-- lib/hyrax/version.rb | 2 +- template.rb | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 95aa9daf3b..579de8f39b 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The Samvera community is here to help. Please see our [support guide](./.github/ # Getting started This document contains instructions specific to setting up an app with __Hyrax -v2.1.0.rc3__. If you are looking for instructions on installing a different +v2.1.0.rc4__. If you are looking for instructions on installing a different version, be sure to select the appropriate branch or tag from the drop-down menu above. @@ -162,7 +162,7 @@ NOTE: The steps need to be done in order to create a new Hyrax based app. Generate a new Rails application using the template. ``` -rails _5.1.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v2.1.0.rc3/template.rb +rails _5.1.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v2.1.0.rc4/template.rb ``` Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including: @@ -188,6 +188,13 @@ Notes: * This web server is purely for development purposes. You will want to use a more fully featured [web server](#web-server) for production-like environments. * You have the option to start each of these services individually. More information on [solr_wrapper](https://github.com/cbeer/solr_wrapper) and [fcrepo_wrapper](https://github.com/cbeer/fcrepo_wrapper) will help you set this up. Start rails with `rails s`. +### Avoid Performance Issues with solr-suggest + +*Recommended for all Hyrax apps.* + +It is strongly suggested that you turn off solr-suggest. Details on why and how to do this are in +[Fix performance issue caused by solr-suggest](https://github.com/samvera/hyrax/wiki/Troubleshooting-Migration-from-2.0.x-to-2.1.0#fix-performance-issue-caused-by-solr-suggest-after-200-objects-are-in-the-repository). + ## Start background workers Many of the services performed by Hyrax are resource intensive, and therefore are well suited to running as background jobs that can be managed and executed by a message queuing system. Examples include: diff --git a/lib/hyrax/version.rb b/lib/hyrax/version.rb index 6723ceb8bc..a9ef1552e1 100644 --- a/lib/hyrax/version.rb +++ b/lib/hyrax/version.rb @@ -1,3 +1,3 @@ module Hyrax - VERSION = '2.1.0.rc3'.freeze + VERSION = '2.1.0.rc4'.freeze end diff --git a/template.rb b/template.rb index 72e4fa13b2..81adcfb523 100644 --- a/template.rb +++ b/template.rb @@ -1,4 +1,4 @@ -gem 'hyrax', '2.1.0.rc3' +gem 'hyrax', '2.1.0.rc4' run 'bundle install' generate 'hyrax:install', '-f' rails_command 'db:migrate'