Skip to content

Commit f635d80

Browse files
author
jj
committed
Add semeru to ring-http-exchange
1 parent 0229fc2 commit f635d80

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

frameworks/Clojure/ring-http-exchange/benchmark_config.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,26 @@
8181
"display_name": "ring-http-exchange-robaho-graalvm",
8282
"notes": "",
8383
"versus": "ring-http-exchange-robaho"
84+
},
85+
"robaho-semeru": {
86+
"json_url": "/json",
87+
"plaintext_url": "/plaintext",
88+
"fortune_url": "/fortunes",
89+
"port": 8080,
90+
"approach": "Realistic",
91+
"classification": "Platform",
92+
"database": "postgres",
93+
"framework": "None",
94+
"language": "Clojure",
95+
"flavor": "None",
96+
"orm": "Raw",
97+
"platform": "None",
98+
"webserver": "None",
99+
"os": "Linux",
100+
"database_os": "Linux",
101+
"display_name": "ring-http-exchange-robaho-semeru",
102+
"notes": "",
103+
"versus": "ring-http-exchange-robaho"
84104
}
85105
}
86106
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM clojure:lein as lein
2+
WORKDIR /ring-http-exchange
3+
COPY project.clj project.clj
4+
COPY resources resources
5+
COPY src src
6+
RUN lein with-profile robaho uberjar
7+
8+
FROM ibm-semeru-runtimes:open-25-jre-jammy
9+
WORKDIR /ring-http-exchange
10+
COPY --from=lein /ring-http-exchange/target/ring-http-server-1.0.0-standalone.jar app.jar
11+
12+
EXPOSE 8080
13+
14+
CMD ["java", "-server", "-XX:+UseParallelGC", "-jar", "app.jar"]

0 commit comments

Comments
 (0)