Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
2015-12-08 20:49:45 +01:00
api nodes could now again be created and found (skiplist is now in usage) 2015-12-08 20:49:45 +01:00
benchmark modified allocator benchmark to be multithreaded 2015-06-22 17:05:42 +02:00
cypher ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
data_structures added a lot of comments to skiplist 2015-12-08 18:30:20 +01:00
database ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
dc ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
debug ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
examples implemented correct skiplist 2015-12-07 21:50:07 +01:00
http checking in all work because i won't be able to work on it for some time 2015-11-22 21:35:40 +01:00
io ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
memory new version of node post (work in progress) 2015-12-07 22:43:54 +01:00
mvcc nodes could now again be created and found (skiplist is now in usage) 2015-12-08 20:49:45 +01:00
speedy ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
storage nodes could now again be created and found (skiplist is now in usage) 2015-12-08 20:49:45 +01:00
test Lockfree list, initial implementation of the remove method 2015-10-18 22:15:06 +02:00
threading ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
transactions ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
utils Merge branch 'master' of https://phabricator.tomicevic.com/diffusion/MG/memgraph 2015-12-07 21:52:08 +01:00
.arcconfig added arcconfig 2015-09-22 01:05:54 +02:00
.gitignore ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01:00
.gitmodules RapidJSON as dependency. rapidjson_middleware is responsible for parsing http::request::body into speedy::request::json 2015-10-16 00:21:26 +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 terminate handler is moved to a separete file 2015-12-04 00:40:12 +01:00
proptest.cpp ooops fix, it's buildable now 2015-10-13 20:32:54 +02:00
README.md ifndef are replaced with the pragma once 2015-12-07 21:51:55 +01: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