Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
Mislav Bradac 1dec024bc8 Return fields in BEGIN, ROLLBACK, COMMIT
Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D683
2017-08-19 13:56:17 +02:00
cmake Make GNU Readline dependency optional 2017-03-24 12:42:45 +01:00
config Added continuous_integration script to stress tests. 2017-08-02 12:06:59 +02:00
docs GraphDbAccessor::BuildIndex - deadlock bugfix 2017-08-11 10:34:18 +02:00
experimental Put Reactors framework into a seperate file and demangle the dependencies 2017-08-17 16:16:13 +02:00
libs Use our version of cppitertools 2017-08-17 14:38:11 +02:00
poc utils::auto_scope refactor 2017-08-11 09:43:10 +02:00
release Release preparation. 2017-06-16 15:16:11 +02:00
src Return fields in BEGIN, ROLLBACK, COMMIT 2017-08-19 13:56:17 +02:00
tests Stress tests now spawn only one memgraph. 2017-08-18 14:48:54 +02:00
tools tools.csv_to_snapshot: Store 'id' property 2017-08-18 17:17:16 +02:00
.arcconfig Set arc.land.onto.default to dev 2017-03-03 13:33:45 +01:00
.clang-format Query - LogicalOp - visitable bug fix 2017-03-22 14:14:01 +01:00
.gdbinit Add pretty printer to gdb for TypedValue 2017-08-16 11:32:25 +02:00
.gitignore Removed Double Locking, Simplified Ownership or LocalEventStream, .... 2017-08-04 17:58:22 +02:00
.ycm_extra_conf.py Adding callback by type (Work in Progress) 2017-08-08 15:56:49 +02:00
CHANGELOG.md Fix bug in named expression 2017-08-17 14:51:12 +02:00
CMakeLists.txt Store paths to glog include and library in CMakeLists 2017-08-16 11:32:52 +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 Added continuous_integration script to stress tests. 2017-08-02 12:06:59 +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