{"id":18336293,"url":"https://github.com/byconity/incubator-brpc","last_synced_at":"2025-09-18T17:20:45.394Z","repository":{"id":79868051,"uuid":"581123722","full_name":"ByConity/incubator-brpc","owner":"ByConity","description":"incubator-brpc uses as submodule in ByConity","archived":false,"fork":false,"pushed_at":"2024-12-05T06:43:03.000Z","size":36316,"stargazers_count":14,"open_issues_count":3,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-23T06:02:17.077Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ByConity.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-22T10:35:58.000Z","updated_at":"2025-07-14T11:03:48.000Z","dependencies_parsed_at":"2025-08-23T06:02:21.253Z","dependency_job_id":"1808a431-9b04-42a4-a4d4-6a1d1f7a0858","html_url":"https://github.com/ByConity/incubator-brpc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ByConity/incubator-brpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ByConity%2Fincubator-brpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ByConity%2Fincubator-brpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ByConity%2Fincubator-brpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ByConity%2Fincubator-brpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ByConity","download_url":"https://codeload.github.com/ByConity/incubator-brpc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ByConity%2Fincubator-brpc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275803304,"owners_count":25531400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-18T02:00:09.552Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T20:07:13.368Z","updated_at":"2025-09-18T17:20:45.378Z","avatar_url":"https://github.com/ByConity.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"[中文版](README_cn.md)\n\n[![Linux Build Status](https://github.com/apache/incubator-brpc/actions/workflows/ci-linux.yml/badge.svg)](https://github.com/apache/incubator-brpc/actions/workflows/ci-linux.yml)\n[![MacOs Build Status](https://github.com/apache/incubator-brpc/actions/workflows/ci-macos.yml/badge.svg)](https://github.com/apache/incubator-brpc/actions/workflows/ci-macos.yml)\n\n# ![brpc](docs/images/logo.png)\n\nbrpc is an Industrial-grade RPC framework using C++ Language, which is often used in  high performance system such as Search, Storage, Machine learning, Advertisement, Recommendation etc.\n\n### \"brpc\" means \"better RPC\". \n\nYou can use it to:\n* Build a server that can talk in multiple protocols (**on same port**), or access all sorts of services\n  * restful http/https, [h2](https://http2.github.io/http2-spec)/[gRPC](https://grpc.io). using http/h2 in brpc is much more friendly than [libcurl](https://curl.haxx.se/libcurl/). Access protobuf-based protocols with HTTP/h2+json, probably from another language.\n  * [redis](docs/en/redis_client.md) and [memcached](docs/en/memcache_client.md), thread-safe, more friendly and performant than the official clients.\n  * [rtmp](https://github.com/brpc/brpc/blob/master/src/brpc/rtmp.h)/[flv](https://en.wikipedia.org/wiki/Flash_Video)/[hls](https://en.wikipedia.org/wiki/HTTP_Live_Streaming), for building [streaming services](https://github.com/brpc/media-server).\n  * hadoop_rpc (may be opensourced)\n  * [rdma](https://en.wikipedia.org/wiki/Remote_direct_memory_access) support (will be opensourced)\n  * [thrift](docs/en/thrift.md) support,  thread-safe, more friendly and performant than the official clients.\n  * all sorts of protocols used in Baidu: [baidu_std](docs/cn/baidu_std.md), [streaming_rpc](docs/en/streaming_rpc.md), hulu_pbrpc, [sofa_pbrpc](https://github.com/baidu/sofa-pbrpc), nova_pbrpc, public_pbrpc, ubrpc and nshead-based ones.\n  * Build [HA](https://en.wikipedia.org/wiki/High_availability) distributed services using an industrial-grade implementation of [RAFT consensus algorithm](https://raft.github.io) which is opensourced at [braft](https://github.com/brpc/braft)\n* Servers can handle requests [synchronously](docs/en/server.md) or [asynchronously](docs/en/server.md#asynchronous-service).\n* Clients can access servers [synchronously](docs/en/client.md#synchronus-call), [asynchronously](docs/en/client.md#asynchronous-call), [semi-synchronously](docs/en/client.md#semi-synchronous-call), or use [combo channels](docs/en/combo_channel.md) to simplify sharded or parallel accesses declaratively.\n* Debug services [via http](docs/en/builtin_service.md), and run  [cpu](docs/cn/cpu_profiler.md), [heap](docs/cn/heap_profiler.md) and [contention](docs/cn/contention_profiler.md) profilers.\n* Get [better latency and throughput](docs/en/overview.md#better-latency-and-throughput).\n* [Extend brpc](docs/en/new_protocol.md) with the protocols used in your organization quickly, or customize components, including [naming services](docs/cn/load_balancing.md#命名服务) (dns, zk, etcd), [load balancers](docs/cn/load_balancing.md#负载均衡) (rr, random, consistent hashing)\n\n# Try it!\n\n* Read [overview](docs/en/overview.md) to know where brpc can be used and its advantages.\n* Read [getting started](docs/cn/getting_started.md) for building steps and play with [examples](https://github.com/brpc/brpc/tree/master/example/).\n* Docs:\n  * [Performance benchmark](docs/cn/benchmark.md)\n  * [bvar](docs/en/bvar.md)\n    * [bvar_c++](docs/cn/bvar_c++.md)\n  * [bthread](docs/cn/bthread.md)\n    * [bthread or not](docs/cn/bthread_or_not.md)\n    * [thread-local](docs/cn/thread_local.md)\n    * [Execution Queue](docs/cn/execution_queue.md)\n  * Client\n    * [Basics](docs/en/client.md)\n    * [Error code](docs/en/error_code.md)\n    * [Combo channels](docs/en/combo_channel.md)\n    * [Access http/h2](docs/en/http_client.md)\n    * [Access gRPC](docs/en/http_derivatives.md#h2grpc)\n    * [Access thrift](docs/en/thrift.md#client-accesses-thrift-server) \n    * [Access UB](docs/cn/ub_client.md)\n    * [Streaming RPC](docs/en/streaming_rpc.md)\n    * [Access redis](docs/en/redis_client.md)\n    * [Access memcached](docs/en/memcache_client.md)\n    * [Backup request](docs/en/backup_request.md)\n    * [Dummy server](docs/en/dummy_server.md)\n  * Server\n    * [Basics](docs/en/server.md)\n    * [Serve http/h2](docs/en/http_service.md)\n    * [Serve gRPC](docs/en/http_derivatives.md#h2grpc)\n    * [Serve thrift](docs/en/thrift.md#server-processes-thrift-requests)\n    * [Serve Nshead](docs/cn/nshead_service.md)\n    * [Debug server issues](docs/cn/server_debugging.md)\n    * [Server push](docs/en/server_push.md)\n    * [Avalanche](docs/cn/avalanche.md)\n    * [Auto ConcurrencyLimiter](docs/cn/auto_concurrency_limiter.md)\n    * [Media Server](https://github.com/brpc/media-server)\n    * [json2pb](docs/cn/json2pb.md)\n  * [Builtin Services](docs/en/builtin_service.md)\n    * [status](docs/en/status.md)\n    * [vars](docs/en/vars.md)\n    * [connections](docs/cn/connections.md)\n    * [flags](docs/cn/flags.md)\n    * [rpcz](docs/cn/rpcz.md)\n    * [cpu_profiler](docs/cn/cpu_profiler.md)\n    * [heap_profiler](docs/cn/heap_profiler.md)\n    * [contention_profiler](docs/cn/contention_profiler.md)\n  * Tools\n    * [rpc_press](docs/cn/rpc_press.md)\n    * [rpc_replay](docs/cn/rpc_replay.md)\n    * [rpc_view](docs/cn/rpc_view.md)\n    * [benchmark_http](docs/cn/benchmark_http.md)\n    * [parallel_http](docs/cn/parallel_http.md)\n  * Others\n    * [IOBuf](docs/en/iobuf.md)\n    * [Streaming Log](docs/en/streaming_log.md)\n    * [FlatMap](docs/cn/flatmap.md)\n    * [brpc introdution](docs/cn/brpc_intro.pptx)(training material)\n    * [A tutorial on building large-scale services](docs/en/tutorial_on_building_services.pptx)(training material)\n    * [brpc internal](docs/en/brpc_internal.pptx)(training material)\n  * RPC in depth\n    * [New Protocol](docs/en/new_protocol.md)\n    * [Atomic instructions](docs/en/atomic_instructions.md)\n    * [IO](docs/en/io.md)\n    * [Threading Overview](docs/en/threading_overview.md)\n    * [Load Balancing](docs/cn/load_balancing.md)\n    * [Locality-aware](docs/cn/lalb.md)\n    * [Consistent Hashing](docs/cn/consistent_hashing.md)\n    * [Memory Management](docs/cn/memory_management.md)\n    * [Timer keeping](docs/cn/timer_keeping.md)\n    * [bthread_id](docs/cn/bthread_id.md)\n  * Use cases\n    * [User cases](community/cases.md)\n\n# Contribute code\nPlease refer to [here](CONTRIBUTING.md).\n\n# Feedback and Getting involved\n* Report bugs, ask questions or give suggestions by [Github Issues](https://github.com/apache/incubator-brpc/issues)\n* Subscribe mailing list(dev-subscribe@brpc.apache.org) to get updated with the project\n\n# Code of Conduct\nWe follow the code of conduct from Apache Software Foundation, please refer it here [Link](https://www.apache.org/foundation/policies/conduct)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbyconity%2Fincubator-brpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbyconity%2Fincubator-brpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbyconity%2Fincubator-brpc/lists"}