Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
2015-10-07 18:45:30 +02:00
api implemented restful resources 2015-10-07 18:45:30 +02:00
benchmark modified allocator benchmark to be multithreaded 2015-06-22 17:05:42 +02:00
cypher implemented a lockfree list 2015-09-22 01:13:42 +02:00
data_structures fixed mpsc queue 2015-10-06 21:02:47 +02:00
debug reformatted some very indented code 2015-10-06 23:44:48 +02:00
io/uv moved uv to io 2015-09-20 14:30:26 +02:00
memory implemented hazard pointer management 2015-09-15 21:34:52 +02:00
mvcc moved transactions back to threading 2015-10-04 09:47:15 +02:00
speedy fixed speedy 2015-10-07 02:24:21 +02:00
storage worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
test lockfree hashmap minor modification (at instead of operator[]) 2015-10-03 21:02:51 +02:00
threading moved transactions back to threading 2015-10-04 09:47:15 +02:00
transactions moved transactions back to threading 2015-10-04 09:47:15 +02:00
utils implemented a simple asynchronous logging infrastructure 2015-10-06 23:15:48 +02:00
.arcconfig added arcconfig 2015-09-22 01:05:54 +02:00
.gitignore basic test on dynamic bitset 2015-09-27 23:05:04 +02:00
.gitmodules added r3 as a submodule 2015-09-25 22:50:57 +02:00
ioctest.cpp implemented a simple ioc container 2015-10-04 09:47:55 +02:00
main.cpp worked on mvcc, compiler and some utils, unfinished 2015-09-13 11:34:17 +02:00
mpsc.cpp implemented a simple asynchronous logging infrastructure 2015-10-06 23:15:48 +02:00
promise.cpp lock free linked list implementation 2015-09-24 01:14:00 +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