• Stars
    star
    50
  • Rank 556,448 (Top 12 %)
  • Language
    Scala
  • License
    Apache License 2.0
  • Created about 11 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Memcached client for Scala

Memcontinuationed

Build Status

Memcontinuationed is an asynchronous memcached client for Scala. Memcontinuationed is the fastest memcached client on JVM, much faster than spymemcached or Whalin's client.

Why is Memcontinuationed so fast?

Reason 1. Better threading model

Memcontinuationed never blocks any threads. On the other hand, spymemcached does not block the IO thread but it does block the user's thread. All Memcontinuationed API are @suspendable, which mean these methods can be invoked by a thread, and return to another thread.

Reason 2. Optimization for huge number of IOPS

Memcontinuationed can merge multiply get or gets requests into one request. On the other hand, spymemcached sends all requests immediately, never waiting for previous response. The spymemcached way consumes more CPU and more TCP overheads than Memcontinuationed. Even worse, the spymemcached way is not compatible with some memcached server.

Note: Because Memcontinuationed queues requests until all the previous response have been received, you may need to create a connection pool of com.dongxiguo.memcontinuationed.Memcontinuationed to maximize the IOPS.

A sample to use Memcontinuationed

import com.dongxiguo.memcontinuationed.Memcontinuationed
import com.dongxiguo.memcontinuationed.StorageAccessor
import java.io._
import java.net._
import java.nio.channels.AsynchronousChannelGroup
import java.util.concurrent.Executors
import scala.util.continuations.reset
import scala.util.control.Exception.Catcher

object Sample {

  def main(args: Array[String]) {
    val threadPool = Executors.newCachedThreadPool()
    val channelGroup = AsynchronousChannelGroup.withThreadPool(threadPool)

    // The locator determines where the memcached server is.
    // You may want to implement ketama hashing here.
    def locator(accessor: StorageAccessor[_]) = {
      new InetSocketAddress("localhost", 1978)
    }

    val memcontinuationed = new Memcontinuationed(channelGroup, locator)

    // The error handler
    implicit def catcher:Catcher[Unit] = {
      case e: Exception =>
        scala.Console.err.print(e)
        sys.exit(-1)
    }

    reset {
      memcontinuationed.set(MyKey("hello"), "Hello, World!")
      val result = memcontinuationed.require(MyKey("hello"))
      assert(result == "Hello, World!")
      println(result)
      sys.exit()
    }
  }
}

/**
 * `MyKey` specifies how to serialize the data of a key/value pair.
 */
case class MyKey(override val key: String) extends StorageAccessor[String] {

  override def encode(output: OutputStream, data: String, flags: Int) {
    output.write(data.getBytes("UTF-8"))
  }

  override def decode(input: InputStream, flags: Int): String = {
    val result = new Array[Byte](input.available)
    input.read(result)
    new String(result, "UTF-8")
  }
}

There is something you need to know:

  • get, set, and most of other methods in Memcontinuationed are @suspendable. You must invoke them in reset or in another @suspendable function you defined.
  • get, set, and most of other methods in Memcontinuationed accept an implicit parameter Catcher. You must use Catcher to handle exceptions from @suspendable functions, instead of try/catch.
  • MyKey is the key you passed to server, which is a custom StorageAccessor. You should implement your own StorageAccessor for each type of data. If your value's format is Protocol Buffers, you can use com.dongxiguo.memcontinuationed.ProtobufAccessor as your custom key's super class.

Build configuration

Add these lines to your build.sbt if you use Sbt:

libraryDependencies += "com.dongxiguo" %% "memcontinuationed" % "0.3.2"
    
libraryDependencies <++= scalaBinaryVersion { bv =>
  bv match {
    case "2.10" => {
      Seq()
    }
    case _ => {
      Seq("org.scala-lang.plugins" % s"scala-continuations-library_$bv" % "1.0.1")
    }
  }
}

libraryDependencies <+= scalaVersion { sv =>
  if (sv.startsWith("2.10.")) {
    compilerPlugin("org.scala-lang.plugins" % "continuations" % sv)
  } else {
    compilerPlugin("org.scala-lang.plugins" % s"scala-continuations-plugin_$sv" % "1.0.1")
  }
}

scalacOptions += "-P:continuations:enable"

Requirement

Memcontinuationed requires Scala 2.10.x or 2.11.x, and JRE 7.

Links

More Repositories

1

fastring

Extremely fast string formatting
Scala
123
star
2

scalajs-all-in-one-template

The All-in-One Scala.js static web project template
Scala
59
star
3

protoc-gen-as3

Automatically exported from code.google.com/p/protoc-gen-as3
ActionScript
53
star
4

protoc-gen-haxe

Protocol Buffers compiler and run-time library for Haxe
Haxe
35
star
5

hoo

Haxe Operator Overloading
Haxe
15
star
6

Control.Dsl

An alternative to monads in do notation
Haskell
11
star
7

commons-continuations

Utilities for Scala continuations
Scala
10
star
8

go-for-ever

首尾相接的围棋
9
star
9

tail-call-proxy

Delayed initialized objects that support tail-call optimization
TypeScript
9
star
10

Curried.scala

The implementation of the Scala proposal: SIP-45 - Curried Varargs
Scala
9
star
11

zero-log

Automatically exported from code.google.com/p/zero-log
Scala
7
star
12

Dsl.scala-akka-actor

Scala
5
star
13

pttrt

Pass Them To Run-Time
Scala
5
star
14

sbt-cppp

Cross-Project Protobuf Plugin for Sbt
Scala
5
star
15

ReactToBindingHtml.scala

React / Binding.scala / html.scala Interoperability
Scala
4
star
16

immutable-future

A set of DSL for asynchronous programming, in the pure functional favor.
Scala
3
star
17

almond-images

Docker images for almond
3
star
18

nix-ld-so-cache-test

Nix
2
star
19

FutureBinding.scala

Scala
2
star
20

scala-junction

Create NTFS junction point from Scala or Java.
Scala
2
star
21

nameBasedXml.scala-0

Scala
2
star
22

as3recording

Automatically exported from code.google.com/p/as3recording
ActionScript
1
star
23

deeplearning-scala

CSS
1
star
24

swc2dot

Automatically exported from code.google.com/p/swc2dot
Scala
1
star
25

XmlExtractor.scala

Scala
1
star
26

JsPromiseBinding.scala

Scala
1
star
27

continuation.scala

Scala
1
star
28

MaximumUniqueSubarray

Scala
1
star
29

Binding.scala-sample

Scala
1
star
30

scaladoc-macro-annotations

Scala
1
star
31

aws-ec2-instance-pool

AWS EC2 instance pool
Haxe
1
star
32

deeplearning.thoughtworks.school

CSS
1
star
33

Route.scala

Scala
1
star
34

trigger-inline-macro-from-compiler-plugin

Scala
1
star
35

islandmap

Scala
1
star