r

rupy

Weighing less than 50KB, Rupy is probably the smallest Java NIO application server in the world. Rupy is inherently non-blocking asynchronous, which makes it the ideal candidate for high concurrency real-time applications pushing dynamic data. Tested with acme, rupy performs on average ~1500 requests per second. To put that figure in perspective; acme doesn't use keep-alive, so that means 1500 unique TCP connections serving dynamic content per second! Thanks to NIO and an event queue to avoid selector trashing, this figure degrades gracefully under high concurrency.
http://code.google.com/p/rupy/
GNU Lesser General Public License
Files download
File Operation
rupy-0.2.4.jar download
rupy-0.2.4.pom download
rupy-0.2.4-sources.jar download
Apache Maven
<dependency>
  <groupId>com.google.code.p</groupId>
  <artifactId>rupy</artifactId>
  <version>0.2.4</version>
</dependency>
Gradle Groovy
implementation 'com.google.code.p:rupy:0.2.4'
Gradle Kotlin
implementation("com.google.code.p:rupy:0.2.4")
Scala SBT
libraryDependencies += "com.google.code.p" % "rupy" % "0.2.4"
Groovy Grape
@Grapes(
  @Grab(group='com.google.code.p', module='rupy', version='0.2.4')
)
Apache Ivy
<dependency org="com.google.code.p" name="rupy" rev="0.2.4" />
Leiningen
[com.google.code.p/rupy "0.2.4"]
Apache Buildr
'com.google.code.p:rupy:jar:0.2.4'
Dependencies
The project has no third-party dependencies