Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
Dominik Tomičević 80aa247dee refactoring a bit
2015-10-17 13:26:07 +02:00
api refactoring a bit 2015-10-17 13:26:07 +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 refactored speedy and http server 2015-10-09 01:24:12 +02:00
database connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
debug reformatted some very indented code 2015-10-06 23:44:48 +02:00
io/uv connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
memory submitted all work done on storage and mvcc 2015-10-08 00:58:29 +02:00
mvcc submitted all work done on storage and mvcc 2015-10-08 00:58:29 +02:00
speedy refactoring a bit 2015-10-17 13:26:07 +02:00
storage refactoring a bit 2015-10-17 13:26:07 +02:00
test lockfree hashmap minor modification (at instead of operator[]) 2015-10-03 21:02:51 +02:00
threading connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
transactions connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
utils updated properties 2015-10-13 20:17:45 +02:00
.arcconfig added arcconfig 2015-09-22 01:05:54 +02:00
.gitignore connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
.gitmodules refactoring a bit 2015-10-17 13:26:07 +02:00
build.sh refactored speedy and http server 2015-10-09 01:24:12 +02:00
Makefile RapidJSON as dependency. rapidjson_middleware is responsible for parsing http::request::body into speedy::request::json 2015-10-16 00:21:26 +02:00
memgraph.cpp connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
proptest.cpp ooops fix, it's buildable now 2015-10-13 20:32:54 +02:00
README.md a wild random checkpoint commit appeared 2015-08-30 01:12:46 +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