All Projects → youzan → Zanphp

youzan / Zanphp

Licence: mit
PHP开发面向C10K+的高并发SOA服务 和RPC服务首选框架

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Zanphp

core
Enterprise Grade #NodeJS Platform implementing Industry Standards & Patterns in order to provide Connectivity, Stability, High-Availability and High-Performance
Stars: ✭ 54 (-96.28%)
Mutual labels:  high-performance, rpc, soa
Rsf
已作为 Hasor 的子项目,迁移到:http://git.oschina.net/zycgit/hasor
Stars: ✭ 77 (-94.69%)
Mutual labels:  rpc, soa, high-performance
Dapeng Soa
A lightweight, high performance micro-service framework
Stars: ✭ 101 (-93.04%)
Mutual labels:  rpc, soa, high-performance
Xxl Rpc
A high performance, distributed RPC framework.(分布式服务框架XXL-RPC)
Stars: ✭ 493 (-66.02%)
Mutual labels:  rpc, high-performance
Joyrpc
high-performance, high-extensibility Java rpc framework.
Stars: ✭ 290 (-80.01%)
Mutual labels:  rpc, high-performance
Saea
SAEA.Socket is a high-performance IOCP framework TCP based on dotnet standard 2.0; Src contains its application test scenarios, such as websocket,rpc, redis driver, MVC WebAPI, lightweight message server, ultra large file transmission, etc. SAEA.Socket是一个高性能IOCP框架的 TCP,基于dotnet standard 2.0;Src中含有其应用测试场景,例如websocket、rpc、redis驱动、MVC WebAPI、轻量级消息服务器、超大文件传输等
Stars: ✭ 318 (-78.08%)
Mutual labels:  rpc, high-performance
cocoyaxi
A go-style coroutine library in C++11 and more.
Stars: ✭ 2,392 (+64.85%)
Mutual labels:  high-performance, rpc
Zato
ESB, SOA, REST, APIs and Cloud Integrations in Python
Stars: ✭ 889 (-38.73%)
Mutual labels:  soa, high-performance
Asyncpg
A fast PostgreSQL Database Client Library for Python/asyncio.
Stars: ✭ 5,216 (+259.48%)
Mutual labels:  asyncio, high-performance
Notlitecode
Remote Encrypted Procedure Calling for .Net & .Net Core
Stars: ✭ 16 (-98.9%)
Mutual labels:  rpc, high-performance
Uvloop
Ultra fast asyncio event loop.
Stars: ✭ 8,246 (+468.3%)
Mutual labels:  asyncio, high-performance
Saluki
Spring Boot starter module for gRPC framework.
Stars: ✭ 267 (-81.6%)
Mutual labels:  rpc, soa
Tarscpp
C++ language framework rpc source code implementation
Stars: ✭ 261 (-82.01%)
Mutual labels:  rpc, high-performance
Tarsjava
Java language framework rpc source code implementation
Stars: ✭ 321 (-77.88%)
Mutual labels:  rpc, high-performance
Tarsgo
Tarsgo is high performance RPC framework in Golang programing language using the tars protocol. Go has become popular for programming with the rise of containerization technology such as docker, k8s, and etcd. Go's goroutine concurrency mechanism means Go is very suitable for large-scale high-concurrency back-end server program development. The Go language has nearly C/C++ performance and near Python productivity. In Tencent, part of the existing C++ development team has gradually turned into Go developers. Tars, a widely used RPC framework, supports C++, Java, NodeJS, and PHP, and now Go. The combination with Go language has become a general trend. Therefore, in the voice of users, we launched Tarsgo, and we have applied to Tencent map application, YingYongbao application, Internet plus and other projects. Learn more about the whole Tars architecture and design at Introduction.
Stars: ✭ 2,931 (+102%)
Mutual labels:  rpc, high-performance
Brpc Java
Java implementation for Baidu RPC, multi-protocol & high performance RPC.
Stars: ✭ 647 (-55.41%)
Mutual labels:  rpc, high-performance
Asyncio
asyncio historical repository
Stars: ✭ 952 (-34.39%)
Mutual labels:  asyncio, high-performance
Swoft Framework
[READ ONLY] Swoft Framework, base of Swoft
Stars: ✭ 70 (-95.18%)
Mutual labels:  rpc, soa
yurpc
high-performance RPC framework.
Stars: ✭ 59 (-95.93%)
Mutual labels:  rpc, soa
zero
Zero: A simple, fast, high performance and low latency Python framework (RPC + PubSub) for building microservices or distributed servers
Stars: ✭ 296 (-79.6%)
Mutual labels:  rpc, asyncio

有赞logo

zanphp logo

基于 PHP 协程的网络服务框架,提供最简单的方式开发面向 C10K+ 的高并发SOA服务和RPC服务。

每天为2,000+个服务提供300,000,000+次访问量支持,广泛应用于有赞各项业务。

License Build Status

核心特性

  1. 基于 yield 实现了独立堆栈的协程
  2. 类似于 Golang 的并发编程模型实现
  3. 基于 zan 提供异步非阻塞I/O服务
  4. 连接池支持(内置 MySQL、Redis、syslog 等多种组件)
  5. 类似 Golang 的 defer 机制解决由于异常导致的资源未释放、锁未释放的问题
  6. 可继承的View布局及组件化支持,方便完成 bigPipe/bigRender/首屏加载优化等不同的渲染方式
  7. 基于模型驱动的 SQLMap,实现了 SQL 的快速定位及方便的 sharding、cache 支持
  8. 提供类似于 Laravel 的 middleware(Filters & Terminators) 机制
  9. Di及单元测试的良好支持
  10. 完整的RPC远程服务调用方案

框架定位

ZanPHP 的定位是高并发 Web 服务或业务中间件。

ZanPHP既可以满足创业公司或者个人建站的需求,也可以满足服务化架构下的框架需求。

ZanPHP 参考了很多 Golang 特性,不过目的绝不是为了替换掉 Golang。

PHP 在业务系统开发上的优势明显,而 Golang 相信会是将来系统编程的霸主。

ZanPHP 和 Golang 的边界是:ZanPHP做业务系统;Golang 做平台系统(中间件或基础服务组件)。

而 ZanPHP 和 Golang 编程模型的驱近,是希望能给PHP程序员一个更好的桥梁到Golang。

理想的技术栈是:ZanPHP + Go + 少量的C/C++。

当然对于致力于终身coding的码农来说:Java依然是很难跨过去的坎。

官方文档

Zan PHP 的文档仓库地址:zanphp-doc

在线查看文档 http://zanphpdoc.zanphp.io/

常用链接

官方交流渠道

捐赠我们

请点击 -> 捐赠通道

License

Zan PHP 框架基于 MIT license 进行开源。

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].