All Projects → AlexStocks → Dubbogo

AlexStocks / Dubbogo

Licence: apache-2.0
a golang micro-service framework compatible with alibaba dubbo

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Dubbogo

Nutzboot
NutzBoot,简称NB,是可靠的企业级微服务框架,提供自动配置,嵌入式web服务,分布式会话,服务治理,负载均衡,hystrix,RPC等一篮子解决方案
Stars: ✭ 430 (+66.67%)
Mutual labels:  microservice, dubbo, zookeeper
Netcoreserver
Ultra fast and low latency asynchronous socket server & client C# .NET Core library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution
Stars: ✭ 799 (+209.69%)
Mutual labels:  tcp-server, tcp-client, http-server
Cppserver
Ultra fast and low latency asynchronous socket server & client C++ library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution
Stars: ✭ 528 (+104.65%)
Mutual labels:  tcp-server, tcp-client, http-server
Swoft
🚀 PHP Microservice Full Coroutine Framework
Stars: ✭ 5,420 (+2000.78%)
Mutual labels:  microservice, tcp-server, http-server
springboot-dubbo-zookeeper-demo
spring boot 集成dubbo和zookeeper
Stars: ✭ 42 (-83.72%)
Mutual labels:  zookeeper, dubbo
aiohttp-json-rpc
Implements JSON-RPC 2.0 using aiohttp
Stars: ✭ 54 (-79.07%)
Mutual labels:  http-client, http-server
hunt-http
http library for D, support http 1.1 / http 2.0 (http2) / websocket server and client.
Stars: ✭ 29 (-88.76%)
Mutual labels:  http-client, http-server
http-accept
Parse Accept and Accept-Language HTTP headers in Ruby.
Stars: ✭ 69 (-73.26%)
Mutual labels:  http-client, http-server
taotao-cloud-project
微服务开发脚手架,包括大数据模块、微服务模块、前端模块。基于Spring Cloud Alibaba的微服务架构。提供技术框架的基础能力的封装,减少开发工作,只关注业务,包含了工作以来的工作总结和技术沉淀
Stars: ✭ 76 (-70.54%)
Mutual labels:  zookeeper, dubbo
Mgx
🌈 A high performance network framework written in c++ (support tcp and http)
Stars: ✭ 15 (-94.19%)
Mutual labels:  tcp-server, http-server
twjitm-core
采用Netty信息加载实现长连接实时通讯系统,客户端可以值任何场景,支持实时http通讯、webSocket通讯、tcp协议通讯、和udp协议通讯、广播协议等 通过http协议,rpc协议。 采用自定义网络数据包结构, 实现自定义网络栈。
Stars: ✭ 98 (-62.02%)
Mutual labels:  zookeeper, tcp-server
http4s-good-practices
Collection of what I consider good practices in Http4s (WIP)
Stars: ✭ 74 (-71.32%)
Mutual labels:  http-client, http-server
BCA-Phantom
A multi-platform HTTP(S) Reverse Shell Server and Client in Python 3
Stars: ✭ 80 (-68.99%)
Mutual labels:  http-client, http-server
zenith
⚡ Functional Scala HTTP server, client, and toolkit.
Stars: ✭ 15 (-94.19%)
Mutual labels:  http-client, http-server
dis-seckill-test
⭐⭐⭐SpringBoot+Zookeeper+Dubbo打造分布式高并发商品秒杀系统
Stars: ✭ 20 (-92.25%)
Mutual labels:  zookeeper, dubbo
malloy
A C++ library providing embeddable server & client components for both HTTP and WebSocket.
Stars: ✭ 29 (-88.76%)
Mutual labels:  http-client, http-server
EasyFileTransfer
An easy way to transfer file with any size on network with tcp protocol.
Stars: ✭ 30 (-88.37%)
Mutual labels:  tcp-server, tcp-client
foxy
Session-based Beast/Asio wrapper requiring C++14
Stars: ✭ 61 (-76.36%)
Mutual labels:  http-client, http-server
JavaEE-projects
存放一些自己写的还有从不同开源社区fork下来的JavaEE项目,其中就不乏一些很多企业单位都在用的源码。
Stars: ✭ 43 (-83.33%)
Mutual labels:  zookeeper, dubbo
EthernetWebServer
This is simple yet complete WebServer library for AVR, Portenta_H7, Teensy, SAM DUE, SAMD21/SAMD51, nRF52, STM32, RP2040-based, etc. boards running Ethernet shields. The functions are similar and compatible to ESP8266/ESP32 WebServer libraries to make life much easier to port sketches from ESP8266/ESP32. Coexisting now with `ESP32 WebServer` and…
Stars: ✭ 118 (-54.26%)
Mutual labels:  http-client, http-server

dubbogo

a golang micro-service framework compatible with alibaba dubbo.

Notice

Because the author of go-micro charges this program is stolen from go-micro though I have followed the Apache License 2.0, I made a tough decision that I do not maintain this program any more. I know it was a bad news for dubbogo users. I apologize to all of you.

However, you can use dubbo-go instead.

feature


  • 1 基于TCP or HTTP的分布式的RPC(√)
  • 2 支持多种编解码协议,如 JsonRPC(√), Hessian(√), ProtoBuf,Thrift等
  • 3 服务发现:服务发布(√)、订阅(√)、通知(√)等,支持多种发现方式如 ZooKeeper(√)、Etcd(x)、Redis(x) 等
  • 4 高可用策略:失败重试(Failover,√)、快速失败(Failfast,√)
  • 5 负载均衡:支持随机请求(√)、轮询(√)、基于权重(x)等
  • 6 其他,如调用统计、访问日志、身份验证等(x)

0.2 说明

  • dubbogo 目前版本(0.2.0) 在上一个版本基础之上,codec层添加支持 hessian 2.0 协议,transport protocol 添加支持 tcp 协议 。
  • 目前只能在 client endpoint 层通过调用 tcp + hessian 与原生的 java dubbo server 间进行服务调用;

TODO :

  • 添加心跳请求和处理;

  • 添加异步通信机制;

0.1 说明


  • dubbogo 目前版本(0.1.1)支持的codec 是jsonrpc 2.0,transport protocol是http;
  • 只要你的java程序支持jsonrpc 2.0 over http,那么dubbogo程序就能调用它,使用过程中如遇到问题,请先查看doc/question.md;
  • dubbogo自己的server端也已经实现,即dubbogo既能调用java service也能调用dubbogo实现的service。相应的代码示例请参考dubbogo-examples
  • dubbogo 下一个版本(0.2.x)计划支持的codec 是dubbo(hessian),transport protocol是tcp;
  • Dingding group: 23331795
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].