基于 RxJava 响应式框架 Datamill
- 授权协议: MIT
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/rchodava/datamill
- 软件文档: https://github.com/rchodava/datamill/wiki/Developer-Guide
软件介绍
基于RxJava 的函数式 Reactive 风格的 Java web 框架。
示例代码:
public static void main(String[] args) { // Note the Server class here is foundation.stack.datamill.http.Server
Server server = new Server(
rb -> rb.ifMethodAndUriMatch(Method.GET, "/status", r -> r.respond(b -> b.ok()))
.elseIfMethodAndUriMatch(Method.GET, "/hello", r -> r.respond(b -> b.ok("Hello world!")))
.orElse(r -> r.respond(b -> b.notFound())));
server.listen(8081);
}
Machine Learning in Action
Peter Harrington / Manning Publications / 2012-4-19 / GBP 29.99
It's been said that data is the new "dirt"—the raw material from which and on which you build the structures of the modern world. And like dirt, data can seem like a limitless, undifferentiated mass. ......一起来看看 《Machine Learning in Action》 这本书的介绍吧!
