Code

pre-release machinations
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 8 May 2003 07:07:42 +0000 (07:07 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 8 May 2003 07:07:42 +0000 (07:07 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1694 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/installation.txt
roundup/__init__.py

index 3dfaa77f32eebea5de0717d9bc4f60167bb3bed9..da4461003f882b92572032636854cd893fb80731 100644 (file)
@@ -2,7 +2,7 @@
 Installing Roundup
 ==================
 
-:Version: $Revision: 1.48 $
+:Version: $Revision: 1.49 $
 
 .. contents::
 
@@ -248,8 +248,12 @@ There's several to choose from, each with benefits and limitations:
   This backend is implemented over the metakit_ storage system, using Mk4Py as
   the interface. It scales much better than the dbm backends.
 
-Note: you may set your tracker up with the anydbm backend (which is guaranteed
-to be available) and switch to one of the other backends at any time using the
+You should be wary of using all but the mysql backend with high-volume trackers 
+(requests every second or two) as database locking is done on the whole
+database.
+
+You may set your tracker up with the anydbm backend (which is guaranteed to be
+available) and switch to one of the other backends at any time using the
 instructions in the `maintenance documentation`_.
 
 
index e7d2da0fa178abae3d28d5421b893d31f6d7f206..9eb351dd6c24320a8a668b322868d4a67c7a044d 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: __init__.py,v 1.20 2003-02-25 10:19:31 richard Exp $
+# $Id: __init__.py,v 1.21 2003-05-08 07:04:08 richard Exp $
 
 ''' Roundup - issue tracking for knowledge workers.
 
@@ -67,6 +67,6 @@ written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a
 much prettier cake :)
 '''
 
-__version__ = '0.6.0pr1'
+__version__ = '0.6.0a1'
 
 # vim: set filetype=python ts=4 sw=4 et si