[Zope-Checkins] CVS: Zope - z2.py:1.74

Brian Lloyd brian@zope.com
Mon, 17 Jun 2002 09:45:46 -0400


Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv9854

Modified Files:
	z2.py 
Log Message:
Changed sys check interval to a higher value (500) to err on the side of 
better performance for higher end machines (that are more likely to be in 
use in production systems).


=== Zope/z2.py 1.73 => 1.74 ===
     determines how often the interpreter checks for periodic things
     such as thread switches and signal handlers. The Zope default
-    is 120, but you may want to experiment with other values that
+    is 500, but you may want to experiment with other values that
     may increase performance in your particular environment.
 
   -D
@@ -244,7 +244,7 @@
 # workaround to allow unicode encoding conversions in DTML
 dummy = codecs.lookup('iso-8859-1')
 
-sys.setcheckinterval(120)
+sys.setcheckinterval(500)
 
 program=sys.argv[0]
 here=os.path.join(os.getcwd(), os.path.split(program)[0])