为我天真的问题道歉:(。但我无法弄清楚什么是NailGun服务器,以及它在Mirantis Fuel中的用途?当我在网上搜索的时候,我发现了两个钉枪服务器,
1)Nailgun Server helps to run all your Java apps in the same JVM
2)Nailgun python library which facilitates easy usage of the Satellite 6 API
但我也不清楚Satellite 6 API是什么意思!有人能帮我了解一下钉枪是什么吗?以及它是如何用于Mirantis燃料的?
提前感谢!
提供了一个创建回应服务器的示例:
var net = require('net');
var server = net.createServer(function (c) {
c.write('hello\r\n');
c.pipe(c);
});
server.listen(8124, 'localhost');
这条线路的作用是什么?
c.pipe(c);