微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

IronFunctions 无服务器的微服务平台

程序名称:IronFunctions

授权协议: Apache

操作系统: 跨平台

开发语言: Google Go

IronFunctions 介绍


IronFunctions

IronFunctions是无服务器的微服务平台。

示例:

下面是一个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

IronFunctions 官网

https://www.iron.io/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐