golem
v1.0.26
该存储库包含 Golem - 一组服务,使您能够在分布式云环境中运行 WebAssembly 组件。
请参阅 Golem 云了解更多信息。
可以通过使用我们发布的 Docker 容器在本地开始使用 Golem。请参阅下面的文档链接,了解如何使用 docker 运行 golem OSS。 https://learn.golem.cloud/docs/quickstart#setting-up-golem
一旦 Golem 在本地运行,您就可以使用golem-cli
与 Golem 服务进行交互。
cargo install golem-cli
# component is your compiled code written in Rust, C, etc
# https://learn.golem.cloud/docs/building-templates helps you write some code and create a component - as an example
golem-cli component add --compnent-name < component-name > < location-to-component-file >
# Now we need a worker corresponding from component, that can execute one of the functions in component
# If worker doesn't exist, it is created on the fly whey you invoke a function in component
golem-cli worker invoke-and-await --component-name < component-name > --worker-name < worker-name > --function golem:it/api.{add-item} --parameters ' [{"product-id" : "foo", "name" : "foo" , "price" : 10, "quantity" : 1}] '
在内部,它就像golem-cli
一样简单,使用golem-client
向 Docker 容器中托管的 Golem 服务发送请求。因此,您可以通过检查 docker 容器来了解正在发生的情况并排除故障。
+-----------------------+ +-----------------------+
| | | |
| Use golem-cli | ---> | Golem Services |
| | | hosted in |
| commands | | Docker container |
| (Send Requests) | | |
+-----------------------+ +-----------------------+
在贡献指南中查找有关如何在本地编译 Golem 服务的详细信息。