微服务框架

lxg d7e2948b9e 新增单条命令执行功能 il y a 2 ans
.vscode 6d0daf3d0f 添加机器码 il y a 2 ans
broker 12f5ddb50a 修复获取ID错误 il y a 2 ans
cmd d7e2948b9e 新增单条命令执行功能 il y a 2 ans
gateway d7e2948b9e 新增单条命令执行功能 il y a 2 ans
helper adc810093d 新增命令行支持参数 il y a 2 ans
log adc810093d 新增命令行支持参数 il y a 2 ans
registry ae2b2c050a 修复select获取到的服务可能不可用的情况 il y a 2 ans
stats deb58152c1 add prometheus stats il y a 3 ans
sync deb58152c1 add prometheus stats il y a 3 ans
vendor 299929e8ee HTTP新增对serverHttp Hook操作 il y a 2 ans
.gitignore deb58152c1 add prometheus stats il y a 3 ans
README.md 1ef67231d2 添加README il y a 3 ans
client.go 08465bb774 rpc请求服务端添加重试处理 il y a 2 ans
context.go 1b38da8010 remove depend il y a 3 ans
global.go e9be5a2951 处理微服务组件支持全局注册方式 il y a 2 ans
go.mod 299929e8ee HTTP新增对serverHttp Hook操作 il y a 2 ans
go.sum 299929e8ee HTTP新增对serverHttp Hook操作 il y a 2 ans
micro.go fb25a01734 修复组件BUG il y a 2 ans
options.go d148437165 server添加上下文的支持 il y a 2 ans
options_test.go 6d0daf3d0f 添加机器码 il y a 2 ans
reporter.go 2b89837846 rename package il y a 2 ans
reporter_test.go 418ed96554 修复darwin获取机器码出问题 il y a 2 ans
request.go af3a5e48d2 fix log bug il y a 2 ans
response.go 1b38da8010 remove depend il y a 3 ans
service.go 56b828534d 网关修改分配比较方案 il y a 2 ans

README.md

提供基本的服务框架

使用示例:

import (
	"git.nspix.com/golang/micro"
	"git.nspix.com/golang/micro/gateway"
	"git.nspix.com/golang/micro/log"
)

func main() {
	svr := micro.New(micro.WithName("test", "0.1.01"))

	svr.Handle("math.add", func(ctx gateway.Context) (err error) {
		return ctx.Success(100)
	})

	log.Debug(svr.Run())
}