MVN

com.google.code.p : rupy

Maven & Gradle

Sep 28, 2008

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.

<dependency>
    <groupId>com.google.code.p</groupId>
    <artifactId>rupy</artifactId>
    <version>0.2.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.google.code.p : rupy to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2.4

All Versions

Choose a version of com.google.code.p : rupy to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2.x
rupy-0.2.4

How to add a dependency to Maven

Add the following com.google.code.p : rupy maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.google.code.p</groupId>
    <artifactId>rupy</artifactId>
    <version>0.2.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.google.code.p : rupy gradle dependency to your build.gradle file:

implementation 'com.google.code.p:rupy:0.2.4'

Gradle Kotlin DSL: Add the following com.google.code.p : rupy gradle kotlin dependency to your build.gradle.kts file:

implementation("com.google.code.p:rupy:0.2.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.google.code.p : rupy sbt scala dependency to your build.sbt file:

libraryDependencies += "com.google.code.p" % "rupy" % "0.2.4"