Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions frameworks/Clojure/ring-http-exchange/benchmark_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,50 @@
"database_os": "Linux",
"display_name": "ring-http-exchange-robaho",
"notes": "",
"versus": "httpserver-robaho"
}
},
{
"graalvm": {
"json_url": "/json",
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Platform",
"database": "None",
"framework": "None",
"language": "Clojure",
"flavor": "None",
"orm": "None",
"platform": "None",
"webserver": "None",
"os": "Linux",
"database_os": "Linux",
"display_name": "ring-http-exchange-graalvm",
"notes": "",
"versus": "ring-http-exchange"
}
},
{
"robaho-graalvm": {
"json_url": "/json",
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Platform",
"database": "None",
"framework": "None",
"language": "Clojure",
"flavor": "None",
"orm": "None",
"platform": "None",
"webserver": "None",
"os": "Linux",
"database_os": "Linux",
"display_name": "ring-http-exchange-robaho-graalvm",
"notes": "",
"versus": "ring-http-exchange-robaho"
}
}
]
}
55 changes: 55 additions & 0 deletions frameworks/Clojure/ring-http-exchange/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
[framework]
name = "ring-http-exchange"

[main]
urls.plaintext = "/plaintext"
urls.json = "/json"
approach = "Realistic"
classification = "Platform"
database = "None"
database_os = "Linux"
os = "Linux"
orm = "Raw"
platform = "httpserver"
webserver = "None"
versus = "httpserver"


[graalvm]
urls.plaintext = "/plaintext"
urls.json = "/json"
approach = "Realistic"
classification = "Platform"
database = "None"
database_os = "Linux"
os = "Linux"
orm = "Raw"
platform = "httpserver"
webserver = "None"
versus = "httpserver-graalvm"

[robaho]
urls.plaintext = "/plaintext"
urls.json = "/json"
approach = "Realistic"
classification = "Platform"
database = "None"
database_os = "Linux"
os = "Linux"
orm = "Raw"
platform = "httpserver"
webserver = "None"
versus = "httpserver-robaho"

[robaho-graalvm]
urls.plaintext = "/plaintext"
urls.json = "/json"
approach = "Realistic"
classification = "Platform"
database = "None"
database_os = "Linux"
os = "Linux"
orm = "Raw"
platform = "httpserver"
webserver = "None"
versus = "httpserver-robaho-graalvm"
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM maven:3-eclipse-temurin-24-alpine as maven
WORKDIR /ring-http-exchange
COPY pom.xml pom.xml
COPY src src
RUN mvn clean clojure:compile package

FROM ghcr.io/graalvm/graalvm-community:24
WORKDIR /ring-http-exchange
COPY --from=maven /ring-http-exchange/target/ring-http-server-1.0.0-jar-with-dependencies.jar app.jar

EXPOSE 8080

CMD ["java", "-server", "-XX:+UseParallelGC", "-jar", "app.jar"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM maven:3-eclipse-temurin-24-alpine as maven
WORKDIR /ring-http-exchange
COPY pom.xml pom.xml
COPY src src
RUN mvn clean clojure:compile -P robaho package

FROM ghcr.io/graalvm/graalvm-community:24
WORKDIR /ring-http-exchange
COPY --from=maven /ring-http-exchange/target/ring-http-server-1.0.0-jar-with-dependencies.jar app.jar

EXPOSE 8080

CMD ["java", "-server", "-XX:+UseParallelGC", "-jar", "app.jar"]
32 changes: 0 additions & 32 deletions frameworks/Java/httpserver-robaho/README.md

This file was deleted.

44 changes: 0 additions & 44 deletions frameworks/Java/httpserver-robaho/benchmark_config.json

This file was deleted.

27 changes: 0 additions & 27 deletions frameworks/Java/httpserver-robaho/config.toml

This file was deleted.

83 changes: 0 additions & 83 deletions frameworks/Java/httpserver-robaho/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading