22Installing Roundup
33==================
44
5- :Version: $Revision: 1.24 $
5+ :Version: $Revision: 1.25 $
66
77.. contents::
88
@@ -43,7 +43,7 @@ There's several to choose from, each with benefits and limitations:
4343
4444**anydbm**
4545 This backend is guaranteed to work on any system that Python runs on. It
46- will generally choose the best * dbm backend that is available on your system
46+ will generally choose the best dbm backend that is available on your system
4747 (from the list dbhash, gdbm, dbm, dumbdbm). It is the least scaleable of all
4848 backends, but performs well enough for a smallish tracker (a couple of
4949 thousand issues, under fifty users, ...).
@@ -55,7 +55,8 @@ There's several to choose from, each with benefits and limitations:
5555 This allows it to gain some performance and scaling benefits.
5656**sqlite**
5757 This uses the SQLite embedded RDBMS to provide a fast, scaleable backend.
58- There are no limitations.
58+ There are no limitations, and it's much faster and more scaleable than the
59+ dbm backends.
5960**gadfly**
6061 This is a proof-of-concept relational database backend, not really intended
6162 for actual production use, although it can be. It uses the Gadfly RDBMS
@@ -64,13 +65,17 @@ There's several to choose from, each with benefits and limitations:
6465 setup is used.
6566**metakit**
6667 This backend is implemented over the metakit storage system, using Mk4Py as
67- the interface. It scales much better than the * dbm backends, but has some
68+ the interface. It scales much better than the dbm backends, but has some
6869 missing features:
6970
7071 - you may not unset properties once they are set
7172 - journal retrieval is not implemented
7273
7374
75+ Note: you may set your tracker up with the anydbm backend (which is guaranteed
76+ to be available) and switch to one of the other backends at any time using the
77+ instructions in the `maintenance documentation`_.
78+
7479Prerequisites
7580=============
7681
@@ -314,4 +319,5 @@ Next: `Getting Started`_
314319.. _`roundup specification`: spec.html
315320.. _`customising roundup`: customizing.html
316321.. _`upgrading document`: upgrading.html
322+ .. _`maintenance documentation`: maintenance.html
317323
0 commit comments