@@ -571,10 +571,16 @@ Choosing Your Backend
571
571
---------------------
572
572
573
573
The actual storage of Roundup tracker information is handled by backends.
574
- There's several to choose from, each with benefits and limitations:
574
+
575
+ Roundup supports basic full text search (FTS) for all backends. Some
576
+ backends support a faster native FTS. Also Roundup supports using
577
+ whoosh or xapian for FTS.
578
+
579
+ There are several backends to choose from, each with benefits and
580
+ limitations:
575
581
576
582
========== =========== ===== ==============================
577
- Name Speed Users Support
583
+ Name Speed Users Support
578
584
========== =========== ===== ==============================
579
585
anydbm Slowest Few Always available
580
586
sqlite Fastest Few Always available
@@ -603,7 +609,8 @@ mysql Fast Many Needs install/admin (MySQLdb_)
603
609
Installed SQLite should be the latest version available (3.3.8 is known
604
610
to work, 3.1.3 is known to have problems).
605
611
606
- Roundup supports using sqlite's full text search capability. This
612
+ Roundup supports using `SQLite's full text search capability
613
+ <admin_guide.html#sqlite-details>`_. This
607
614
can improve searching if you are not installing another indexer like
608
615
xapian or whoosh. It works best with English text.
609
616
**postgresql**
@@ -612,6 +619,12 @@ mysql Fast Many Needs install/admin (MySQLdb_)
612
619
requirements. You must also configure
613
620
the ``rdbms`` section of your tracker's ``config.ini``. It is recommended
614
621
that you use at least version 2.8 of psycopg2.
622
+
623
+ Roundup supports using `postgresql's full text search
624
+ capability
625
+ <admin_guide.html#postgresql-info>`_. This
626
+ can improve searching if you are not installing another indexer like
627
+ xapian or whoosh. It can be tuned to work with different languages.
615
628
**mysql**
616
629
Backend for popular RDBMS MySQL. You must read `doc/mysql.txt`_ for
617
630
additional installation steps and requirements. You must also
0 commit comments