суббота, июня 16, 2012

Ссылки 2012-06

This is a classic CRUD application, backed by MongoDB.
https://github.com/bjartek/computer-database-mongo

ZeroMQ + Akka
http://doc.akka.io/docs/akka/2.0.2/scala/zeromq.html

Akka zeromq sever
akka-zeromq-serverhttps://github.com/jiminoc/akka-zeromq-server

Install ZeroMQ in Mac OS X
1) install homedrew
https://github.com/mxcl/homebrew/wiki/installation
2) #brew install zeromq --universal

ZeroMQ PUSH/PULL sample implementation
https://gist.github.com/2222634
Timeout in Play! 2.0 Action

def index = Action { request =>
Async {
WS.url(someURL)
.get().map( response => Ok(html.viewModel(someModel)))
.orTimeout(100, InternalServerError)
.map(_.fold(identity,identity))
}
}


Мой список блогов