Gemini (and others) got hit pretty bad in the last few plaintext benchmarks on Citrine, and we suspect that it was due to removing the resin.xml which configured logging.
@@ -9,4 +9,5 @@ WORKDIR /resin
RUN curl -sL http://caucho.com/download/resin-4.0.56.tar.gz | tar xz --strip-components=1
RUN rm -rf webapps/*
COPY --from=lein /compojure/target/hello-compojure-standalone.war webapps/ROOT.war
+COPY resin.xml conf/resin.xml
CMD ["java", "-jar", "lib/resin.jar", "console"]
@@ -0,0 +1,18 @@
+<resin xmlns="http://caucho.com/ns/resin"
+ xmlns:resin="http://caucho.com/ns/resin/core">
+
+ <cluster id="">
+ <resin:import path="/resin/conf/app-default.xml" />
+ <log name="" level="config" path="stdout:" timestamp="[%H:%M:%S.%s] " />
+ <server id="">
+ <http port="8080" />
+ </server>
+ <host>
+ <web-app-deploy path="/resin/webapps"
+ expand-preserve-fileset="WEB-INF/work/**"/>
+ </host>
+ </cluster>
+</resin>
@@ -22,4 +22,5 @@ WORKDIR /resin
RUN cp /grails/target/hello-0.1.war webapps/ROOT.war
@@ -10,4 +10,5 @@ WORKDIR /resin
COPY --from=maven /activeweb/target/activeweb.war webapps/ROOT.war
COPY --from=maven /curacao/target/curacao.war webapps/ROOT.war
@@ -16,5 +16,5 @@ WORKDIR /resin
COPY --from=maven /gemini/target/HelloWorld-0.0.1.war webapps/ROOT.war
-
@@ -19,4 +19,5 @@ WORKDIR /resin
COPY --from=maven /revenj-jvm/target/revenj.war webapps/ROOT.war
COPY --from=maven /servlet/target/servlet.war webapps/ROOT.war
COPY --from=maven /spark/target/spark.war webapps/ROOT.war
COPY --from=maven /tapestry/target/tapestry.war webapps/ROOT.war
COPY --from=maven /wicket/target/hellowicket-1.0.war webapps/ROOT.war