[Rt-commit] rt branch, 4.2-trunk, updated. rt-4.2.9-39-g2551dca

Alex Vandiver alexmv at bestpractical.com
Thu Nov 27 09:55:06 EST 2014


The branch, 4.2-trunk has been updated
       via  2551dca53f593ad3d08a6d0f7d988337feebc13d (commit)
      from  41474a5688aa98408a5e24e64c596cb9c69dcad4 (commit)

Summary of changes:
 docs/full_text_indexing.pod | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

- Log -----------------------------------------------------------------
commit 2551dca53f593ad3d08a6d0f7d988337feebc13d
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Wed Nov 26 18:46:27 2014 -0500

    Mention how to do unindexed FTS
    
    This is intentionally placed at the end, soas to minimize the number of
    users who shoot themselves in the foot.

diff --git a/docs/full_text_indexing.pod b/docs/full_text_indexing.pod
index 211326f..c3debe6 100644
--- a/docs/full_text_indexing.pod
+++ b/docs/full_text_indexing.pod
@@ -188,4 +188,18 @@ chapter of Oracle's B<Text Application Developer's Guide> for details
 how to keep the index optimized, perform garbage collection, and other
 tasks.
 
+=head1 UNINDEXED SEARCH
+
+It is also possible to enable full-text search without database indexing
+support, simply by setting the C<Enable> key of the C<%FullTextSearch>
+option to 1, while leaving C<Indexed> set to 0:
+
+    Set(%FullTextSearch,
+        Enable  => 1,
+        Indexed => 0,
+    );
+
+This is not generally suggested, as unindexed full-text searching can
+cause severe performance problems.
+
 =cut

-----------------------------------------------------------------------


More information about the rt-commit mailing list