twbs /
bootstrap
The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
Loading repository data…
arcadius / repository
No description provided.
Are you wondering which web container to use for your nest Java REST API?
If your answer is yes, then you are not alone.
This project compares: Tomcat, Jetty, Grizzly and Undertow in term of serving JAX-RS responses
TO avoid any latency, the REST API does not try to access any backend service.
There are 3 blog entries supporting this benchmark:
##Setup To run this benchmark, you will need:
sudo apt-get install apache2-utils##Running load tests with default server configuration to run the test,
first start the API server by doing:
./gradlew -p <SERVER NAME> bootRun
where <SERVER NAME> is one of grizzly, jetty, tomcat or undertow
then in a new console, do
./run-load-test.sh
feel free to edit the script for for different load profile
##Changing server thread pool size and header One can easily change server thread pool size on the command line:
Note that it has been advised (Undertow folk) that we take as worker-thread 16*numberOfCores
In my case, we have 2 cores => workers=32
####Grizzly
./gradlew bootRun -p grizzly -Dserver.grizzly.worker-threads=32 -Dserver.server-header=TestServer
####Jetty
./gradlew bootRun -p jetty -Dserver.jetty.min-threads=32 -Dserver.jetty.max-threads=32 -Dserver.server-header=TestServer
####Tomcat
./gradlew bootRun -p tomcat -Dserver.tomcat.max-threads=32 -Dserver.server-header=TestServer
####Undertow
./gradlew bootRun -p undertow -Dserver.undertow.worker-threads=32 -Dserver.server-header=TestServer
#Actuator
To enable spring boot actuator,please look in build.gradle for the comments
/**To enable actuator...
Selected from shared topics, language and repository description—not editorial ratings.
twbs /
The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
Chalarangelo /
Coding articles to level up your development skills
electron /
:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
d3 /
Bring data to life with SVG, Canvas and HTML. :bar_chart::chart_with_upwards_trend::tada:
microsoft /
24 Lessons, 12 Weeks, Get Started as a Web Developer
florinpop17 /
A Collection of application ideas which can be used to improve your coding skills.