add option to JAVA_OPTS
-XX:MaxPermSize=256m
to avoid error “Error in application xxx – PermGen space”
Month: August 2006
helma: make objects persistent in request
to make objects persistent during a request, use
res.commit();
our problem was, that we had an import process that sometimes was adorted due to timeout.
res.commit() saves the objects that have been created until it’s call. so we only “lose” the objects that would be created after the timeout.