Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Merge pull request #104 from halfnelson/master
Browse files Browse the repository at this point in the history
Support for GETS memcached protocol command
  • Loading branch information
robey committed Aug 17, 2012
2 parents c66bbb3 + b6330a3 commit d1c93cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/net/lag/kestrel/MemcacheHandler.scala
Expand Up @@ -58,7 +58,7 @@ class MemcacheHandler(

final def apply(request: MemcacheRequest): Future[MemcacheResponse] = {
request.line(0) match {
case "get" =>
case "get" | "gets" =>
get(request.line(1))
case "monitor" =>
val maxItems = if (request.line.size > 3) request.line(3).toInt else maxOpenReads
Expand Down

0 comments on commit d1c93cb

Please sign in to comment.