# rpcx-sun-examples **Repository Path**: yonglinux/rpcx-sun-examples ## Basic Information - **Project Name**: rpcx-sun-examples - **Description**: 复制 rpcx-examples 新生成 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-17 - **Last Updated**: 2022-02-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Examples for the latest rpcx A lot of examples for [rpcx](https://github.com/smallnest/rpcx) ## How to run you should build rpcx with necessary tags, otherwise only need to install rpcx: ```sh go get -u -v github.com/smallnest/rpcx/... ``` If you install succeefullly, you can run examples in this repository. Enter one sub directory in this repository, `go run server.go` in one terminal and `cd client; go run client.go` in another ternimal, and you can watch the run result. For example, ```sh cd 101basic go run server.go ``` And ```sh cd 101basic/client go run client.go ```