summaryrefslogtreecommitdiff
path: root/rt/docs
diff options
context:
space:
mode:
Diffstat (limited to 'rt/docs')
-rw-r--r--rt/docs/UPGRADING-4.210
-rw-r--r--rt/docs/full_text_indexing.pod7
2 files changed, 15 insertions, 2 deletions
diff --git a/rt/docs/UPGRADING-4.2 b/rt/docs/UPGRADING-4.2
index 76aa96d15..45a000e87 100644
--- a/rt/docs/UPGRADING-4.2
+++ b/rt/docs/UPGRADING-4.2
@@ -327,11 +327,17 @@ functionality can now be implemented via C<%DatabaseExtraDSN>.
C<$DatabaseRequireSSL> has been removed, and setting it will trigger an
informational message that setting it is ineffective.
-The full-text indexing defaults for PostgreSQL have changed; GiST is now
+The full-text indexing defaults for PostgreSQL have changed; GIN is now
the suggested index, as well as storing data in a separate
AttachmentsIndex table. Both changes improve lookup speed. For
improved search performance, you may wish to drop existing C<tsvector>
-and C<GIN> indexes on C<Attachments>, and re-generate the index using
+and C<GiST> indexes on C<Attachments>, and re-generate the index using
C<rt-setup-fulltext-index>.
+=head1 UPGRADING FROM 4.2.12 AND EARLIER
+
+New deployments install an C<RT_SiteConfig.pm> that includes a C<use utf8;>
+to allow Unicode to be used in config. You may wish to add a C<use utf8;> to
+the top of your C<RT_SiteConfig.pm> if you haven't already done so.
+
=cut
diff --git a/rt/docs/full_text_indexing.pod b/rt/docs/full_text_indexing.pod
index 24169cb14..189c346cf 100644
--- a/rt/docs/full_text_indexing.pod
+++ b/rt/docs/full_text_indexing.pod
@@ -273,4 +273,11 @@ option to 1, while leaving C<Indexed> set to 0:
This is not generally suggested, as unindexed full-text searching can
cause severe performance problems.
+=head1 LIMIT ATTACHMENT SIZE
+
+On some systems, very large attachments can cause memory and other
+performance issues for the indexer making it unable to complete
+indexing. See L<RT_Config.pm/"$MaxFulltextAttachmentSize"> for
+details on setting a maximum attachment size to index.
+
=cut