Commit 1c4b06e5 authored by Brian Lloyd's avatar Brian Lloyd

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).
parent 75a2f02c
...@@ -48,7 +48,7 @@ Options: ...@@ -48,7 +48,7 @@ Options:
Set the interpreter check interval. This integer value Set the interpreter check interval. This integer value
determines how often the interpreter checks for periodic things determines how often the interpreter checks for periodic things
such as thread switches and signal handlers. The Zope default 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. may increase performance in your particular environment.
-D -D
...@@ -244,7 +244,7 @@ import os, sys, getopt, codecs, string ...@@ -244,7 +244,7 @@ import os, sys, getopt, codecs, string
# workaround to allow unicode encoding conversions in DTML # workaround to allow unicode encoding conversions in DTML
dummy = codecs.lookup('iso-8859-1') dummy = codecs.lookup('iso-8859-1')
sys.setcheckinterval(120) sys.setcheckinterval(500)
program=sys.argv[0] program=sys.argv[0]
here=os.path.join(os.getcwd(), os.path.split(program)[0]) here=os.path.join(os.getcwd(), os.path.split(program)[0])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment