The Scala PaperCache client. The client supports all commands described in the wire protocol on the homepage.
import io.papercache.PaperClient;
val client = new PaperClient("paper://127.0.0.1:3145");
client.set("hello", "world");
val got = client.get("hello");