- 授权协议: Apache
- 开发语言: Google Go
- 操作系统: 跨平台
- 软件首页: https://www.iron.io/
- 软件文档: https://github.com/iron-io/functions/blob/master/README.md
- 官方下载: https://github.com/iron-io/functions/archive/master.zip
软件介绍
IronFunctions
IronFunctions是无服务器的微服务平台。
一次写入
公有,私有和混合云
直接从 Lambda 导入函数,并而在任何地方运行
用 Go 开发
示例:
下面是一个Go函数,只返回“Hello $ {NAME}!”:
package main
import (
"encoding/json"
"fmt"
"os"
)
type Person struct {
Name string
}
func main() {
p := &Person{Name: "World"}
json.NewDecoder(os.Stdin).Decode(p)
fmt.Printf("Hello %v!", p.Name)
}将上面的代码复制并粘贴到名为func.go的文件中,然后运行以下命令来构建您的函数并进行部署。
# create func.yaml file, replace $USERNAME with your Docker Hub username. fnctl init $USERNAME/hello # build the function fnctl build # test it fnctl run # push it to Docker Hub fnctl push # create an app fnctl apps create myapp # create a route that maps /hello to your new function fnctl routes create myapp /hello
现在可以调用你的函数:
curl http://localhost:8080/r/myapp/hello
Head First Python
Paul Barry / O'Reilly Media / 2010-11-30 / USD 49.99
Are you keen to add Python to your programming skills? Learn quickly and have some fun at the same time with Head First Python. This book takes you beyond typical how-to manuals with engaging images, ......一起来看看 《Head First Python》 这本书的介绍吧!
