Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
Dominik Gleich 8210d44c47 Change to gold linker.
Summary:
Benchmark conducted showed positive performance change, a gain of ~20%.

Setup:

ccache disabled (export CCACHE_DISABLE=1)

cd build
rm -rf *
cmake ..
time make -j8

without gold linker

real	3m25,384s
user	11m58,337s
sys	0m37,747s

real    3m48,087s
user    12m57,600s
sys     0m36,837s

real    3m20,116s
user    12m9,570s
sys     0m33,643s

with gold linker

real    2m48,073s
user    10m2,257s
sys     0m27,480s

real    2m55,673s
user    10m13,420s
sys     0m27,233s

real    2m47,866s
user    10m2,377s
sys     0m27,323s

Reviewers: teon.banek, mislav.bradac, florijan, mferencevic

Reviewed By: mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D903
2017-10-17 11:58:01 +02:00
cmake Add option whether to link with libreadline or not 2017-10-04 15:23:11 +02:00
config Fill the alpha.conf with all settings and document them 2017-10-06 15:15:19 +02:00
customers/ravelin Clients: ravelin 2017-10-09 14:34:46 +02:00
docs Fixed openCypher documentation query indentation. 2017-10-11 13:55:46 +02:00
experimental Remove unused stuff from CMakeLists 2017-10-16 13:45:18 +02:00
libs Remove unused stuff from CMakeLists 2017-10-16 13:45:18 +02:00
poc Remove unused stuff from CMakeLists 2017-10-16 13:45:18 +02:00
release Add tagging docker image as latest 2017-10-11 13:05:18 +02:00
src Removed one function from version_list 2017-10-17 11:21:56 +02:00
tests Removed one function from version_list 2017-10-17 11:21:56 +02:00
tools Remove unused stuff from CMakeLists 2017-10-16 13:45:18 +02:00
.arcconfig Set arc.land.onto.default to dev 2017-03-03 13:33:45 +01:00
.clang-format Edges data structure now supports multiple edge filtering (implicit OR) 2017-09-26 13:46:18 +02:00
.gdbinit Add pretty printer to gdb for TypedValue 2017-08-16 11:32:25 +02:00
.gitignore LDBC plot script update 2017-10-08 14:23:53 +01:00
.ycm_extra_conf.py Remove EdgeType index - not used in interpreter 2017-10-06 15:02:34 +02:00
CHANGELOG.md Bump Memgraph version to 0.8.0 2017-10-09 10:30:31 +02:00
CMakeLists.txt Change to gold linker. 2017-10-17 11:58:01 +02:00
coverage Silence ctest when running for coverage 2017-06-13 11:54:43 +02:00
Doxyfile Enable AUTOBRIEF for doxygen 2017-06-02 08:59:49 +02:00
Doxylogo.png Doxygen setup 2016-12-20 15:49:52 +01:00
format Migrate command line args to gflgs in tests 2017-07-06 13:54:12 +02:00
init Remove unnecessary requirements 2017-08-28 10:19:14 +02:00
install_neo NeoRunner + Harness bugfix 2017-07-29 17:46:24 +02:00
llvm-gcov memgraph coverage (lcov setup in progress...) 2017-03-07 18:27:03 +01:00
README.md Migrate command line args to gflgs in tests 2017-07-06 13:54:12 +02:00

memgraph

Memgraph is an ACID compliant high performance transactional distributed in-memory graph database featuring runtime native query compiling, lock free data structures, multi-version concurrency control and asynchronous IO.

dependencies

Memgraph can be compiled using any modern c++ compiler. It mostly relies on the standard template library, however, some things do require external libraries.

Some code contains linux-specific libraries and the build is only supported on a 64 bit linux kernel.

  • linux
  • clang 3.8 (good c++11 support, especially lock free atomics)
  • antlr (compiler frontend)
  • cppitertools
  • fmt format
  • google benchmark
  • google test
  • glog
  • gflags