百度BRPC框架

zyearn 8c374a505d fix static linking in ex vor 6 Jahren
.github 455eab9fba Update stale.yml vor 6 Jahren
bazel ce04d18af2 bazel build support glog vor 6 Jahren
cmake 73de0ca998 Fix incorrect cmake required version vor 6 Jahren
docs e6db159416 Merge branch 'cmake_support' of github.com:brpc/brpc into cmake_support vor 6 Jahren
example 8c374a505d fix static linking in ex vor 6 Jahren
java 31d45c205d Add empty folder of python and java vor 6 Jahren
python 31d45c205d Add empty folder of python and java vor 6 Jahren
src e6db159416 Merge branch 'cmake_support' of github.com:brpc/brpc into cmake_support vor 6 Jahren
test 802f8ca0a8 Make Makefile work as well in MacOs vor 6 Jahren
tools 802f8ca0a8 Make Makefile work as well in MacOs vor 6 Jahren
.gitignore b92c498139 support conditional flags on certain gcc and compile proto file using cmake, based on CMakefile from kevin-xu-158 vor 6 Jahren
.travis.yml 17feeae9f7 print bt when core dump happens in running UT vor 6 Jahren
BUILD 8c8cf8822f bazel support example and unittest vor 6 Jahren
CMakeLists.txt 081b464896 Put Impl of get_clocktime into butil/time.cpp vor 6 Jahren
Dockerfile a6408e5844 add docker vor 6 Jahren
LICENSE 0630ae1e8a Patch svn r35206 & fix compilation of tools vor 6 Jahren
Makefile 802f8ca0a8 Make Makefile work as well in MacOs vor 6 Jahren
README.md 8de65ffeb7 + Update PPTs vor 6 Jahren
README_cn.md 8de65ffeb7 + Update PPTs vor 6 Jahren
WORKSPACE af913b6611 travis-ci support bazel build vor 6 Jahren
build_in_travis_ci.sh 55728a348a keep only one bazel compilation combination in travis vor 6 Jahren
config.h.in b92c498139 support conditional flags on certain gcc and compile proto file using cmake, based on CMakefile from kevin-xu-158 vor 6 Jahren
config_brpc.sh 802f8ca0a8 Make Makefile work as well in MacOs vor 6 Jahren
glog.BUILD ce04d18af2 bazel build support glog vor 6 Jahren
leveldb.BUILD ed28de7091 add workspace.bzl and bazel.rc vor 6 Jahren

README.md

中文版

Build Status

brpc

A industrial-grade RPC framework used throughout Baidu, with 1,000,000+ instances(not counting clients) and thousands kinds of services, called "baidu-rpc" inside Baidu. Only C++ implementation is opensourced right now.

You can use it to:

Try it!

Contribute code

If you can fix any of the issues or add new features, you're welcome to send the PR to us. If the PR is accepted, your contribution will be scored from 0 to 5 points according to the difficulty and quality (higher is better). If you accumulate 10 points, you can contact us for interviewing opportunities or recommendation letter for your future jobs.

Make sure your code meets following requirements before submitting the PR:

  • The code conforms to google C++ coding style and is indented by 4 spaces.
  • The code appears where it should be. For example the code to support an extra protocol should not be put in general classes like server.cpp, channel.cpp, while a general modification would better not be hidden inside a very specific protocol.
  • Has unittests.

Check following items after submitting the PR:

  • Compilations and unittests in travis-ci are passed.