Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
Dominik Tomičević 65d1920af5 Merge branch 'master' of https://phabricator.tomicevic.com/diffusion/MG/memgraph
* 'master' of https://phabricator.tomicevic.com/diffusion/MG/memgraph:
  Lexertl git submodule
  Initial version of the router class (not yet implemented)
2015-09-17 21:40:37 +02:00
benchmark modified allocator benchmark to be multithreaded 2015-06-22 17:05:42 +02:00
cypher Merge branch 'master' of https://phabricator.tomicevic.com/diffusion/MG/memgraph 2015-09-17 21:40:37 +02:00
data_structures worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
memory implemented hazard pointer management 2015-09-15 21:34:52 +02:00
mvcc worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
server Initial version of the router class (not yet implemented) 2015-09-17 02:30:33 +02:00
storage worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
test changed sync directory location for spinlock test 2015-07-04 11:56:09 +02:00
threading worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
utils fixed atomic counter to be seq_cst and added compile time checking of T to be integral 2015-09-13 12:56:30 +02:00
.gitignore Lexertl git submodule 2015-09-17 21:37:53 +02:00
.gitmodules Lexertl git submodule 2015-09-17 21:37:53 +02:00
main.cpp worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
README.md a wild random checkpoint commit appeared 2015-08-30 01:12:46 +02:00
test_skip.cpp commit before os reinstall 2015-07-07 16:18:26 +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.5 or Gcc 4.8 (good c++11 support, especially lock free atomics)
  • boost 1.55 (or something, probably works with almost anything)
  • lexertl (2015-07-14)
  • lemon (parser generator)
  • catch (for compiling tests)

build