Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
2015-10-29 00:35:30 +01:00
api Merge commit. api/resources/node.hpp speedy/rapidjson_middleware.hpp conflicts resolved 2015-10-17 19:34:00 +02:00
benchmark modified allocator benchmark to be multithreaded 2015-06-22 17:05:42 +02:00
cypher added example for codegen 2015-10-28 22:55:57 +01:00
data_structures cypher + new tcp server 2015-10-27 20:21:28 +01:00
database connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
dc Much better but not perfect version of dynamic compile and dynamic load code. DynamicLib class and rudimentar example. 2015-10-25 16:11:52 +01:00
debug cypher + new tcp server 2015-10-27 20:21:28 +01:00
io benchmarking and fixes on the server 2015-10-29 00:35:30 +01:00
memory Lockfree list, initial implementation of the remove method 2015-10-18 22:15:06 +02:00
mvcc submitted all work done on storage and mvcc 2015-10-08 00:58:29 +02:00
speedy shorter version of speedy response 2015-10-18 10:01:53 +02:00
storage refactoring a bit 2015-10-17 13:26:07 +02:00
test Lockfree list, initial implementation of the remove method 2015-10-18 22:15:06 +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 cypher + new tcp server 2015-10-27 20:21:28 +01:00
.arcconfig added arcconfig 2015-09-22 01:05:54 +02:00
.gitignore cpp program runs compile command, test only code 2015-10-22 00:17:40 +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