Node 的 RPC 框架 kamote
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/majimboo/kamote
- 软件文档: https://github.com/majimboo/kamote/blob/master/README.md
软件介绍
kamote 是 Node.js 下简单、快速的 RPC。
例子:
var kamote = require('kamote');
var server = new kamote.Server();
server.add('plusOne', function(value) {
console.log(value + 1);
});
server.listen(9456);
var kamote = require('kamote');
var client = new kamote.Client();
client.plusOne(100, function(result) {
console.log(result); // 101
});
client.reconnect(9456);
Ant Colony Optimization
Marco Dorigo、Thomas Stützle / A Bradford Book / 2004-6-4 / USD 45.00
The complex social behaviors of ants have been much studied by science, and computer scientists are now finding that these behavior patterns can provide models for solving difficult combinatorial opti......一起来看看 《Ant Colony Optimization》 这本书的介绍吧!
