greenrd 00/12/08 15:23:42
Modified: src/org/apache/cocoon cocoon.properties
Log:
as discussed on cocoon-users just now, default heapsize value is too high for default max
heapsize of JDK 1.1
Revision Changes Path
1.45 +3 -3 xml-cocoon/src/org/apache/cocoon/cocoon.properties
Index: cocoon.properties
===================================================================
RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/cocoon.properties,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- cocoon.properties 2000/12/08 22:54:42 1.44
+++ cocoon.properties 2000/12/08 23:23:41 1.45
@@ -320,7 +320,7 @@
store = org.apache.cocoon.store.MemoryStore
# Indicates how much free memory should always be available to the JVM. (in bytes)
-# Here, 10M.
+# Here, 1M.
store.freememory = 1000000
# Indicates the sleeping time for the background checking thread (in seconds)
@@ -337,8 +337,8 @@
# Soft maximum heap size. Cocoon will try to aggressively flush its store
# to stay not too far above this limit.
# To change the absolute maximum, consult your JDK tool documentation.
-# here, 60M or close to it anyway
-store.heapsize = 60000000
+# here, 15M or close to it anyway
+store.heapsize = 15000000
|