百度BRPC框架

Ge Jun 06a9cd5526 Merge pull request #260 from qiaohaijun/patch-1 6 years ago
bazel ce04d18af2 bazel build support glog 6 years ago
cmake e11f2f51c7 add test(except test/popen_unittest.cpp) 6 years ago
docs 870b0ba8af readable 6 years ago
example e36a8b0027 Revert changes on Makefile 6 years ago
java 31d45c205d Add empty folder of python and java 6 years ago
python 31d45c205d Add empty folder of python and java 6 years ago
src 200989099c Merge pull request #261 from guangqianpeng/master 6 years ago
test 0c90dbc0e6 Merge pull request #243 from cdjingit/master 6 years ago
tools 17fcb1817b Add -D__STRICT_ANSI__ to suppress the error '__float128' is not yet implemented 6 years ago
.gitignore b92c498139 support conditional flags on certain gcc and compile proto file using cmake, based on CMakefile from kevin-xu-158 6 years ago
.travis.yml d4312a1d01 fix syntax error in build_in_travis_ci.sh 6 years ago
BUILD 8c8cf8822f bazel support example and unittest 6 years ago
CMakeLists.txt 7c3f109e59 Add LOG_AT macro when linking with glog 6 years ago
Dockerfile a6408e5844 add docker 6 years ago
LICENSE 0630ae1e8a Patch svn r35206 & fix compilation of tools 6 years ago
Makefile 9989076f74 Add NDEBUG 6 years ago
README.md 26a0df8413 Add tutorial_on_building_services.pptx 6 years ago
README_cn.md 26a0df8413 Add tutorial_on_building_services.pptx 6 years ago
WORKSPACE af913b6611 travis-ci support bazel build 6 years ago
build_in_travis_ci.sh 55728a348a keep only one bazel compilation combination in travis 6 years ago
config.h.in b92c498139 support conditional flags on certain gcc and compile proto file using cmake, based on CMakefile from kevin-xu-158 6 years ago
config_brpc.sh 3d9a6ec81b add missing files for MAC 6 years ago
glog.BUILD ce04d18af2 bazel build support glog 6 years ago
leveldb.BUILD ed28de7091 add workspace.bzl and bazel.rc 6 years ago

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.