Open-source graph database, built for real-time streaming data, compatible with Neo4j.
Go to file
2015-11-22 21:35:40 +01:00
api uint64_t was replaced with the Id object. Fixes T28. 2015-11-21 19:16:19 +01:00
benchmark modified allocator benchmark to be multithreaded 2015-06-22 17:05:42 +02:00
cypher uint64_t was replaced with the Id object. Fixes T28. 2015-11-21 19:16:19 +01:00
data_structures 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
database connected the first working version of memgraph 2015-10-11 20:59:27 +02:00
dc using instead of typedef 2015-11-01 12:45:27 +01:00
debug cypher + new tcp server 2015-10-27 20:21:28 +01:00
examples Merge branch 'master' of https://phabricator.tomicevic.com/diffusion/MG/memgraph 2015-11-21 22:49:42 +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 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
memory 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
mvcc 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
speedy A node could now be found by id. GET /db/data/node/{id} returns the node with specified id. 2015-11-05 00:46:13 +01:00
storage uint64_t was replaced with the Id object. Fixes T28. 2015-11-21 19:16:19 +01:00
test Lockfree list, initial implementation of the remove method 2015-10-18 22:15:06 +02:00
threading improved hazard pointer support, still has issues though 2015-11-21 22:48:56 +01:00
transactions 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
utils TotalOrdering and Id implementations, related to T28 2015-11-21 16:08:23 +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 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 Initial code on crashes and exceptions logging. Related to T31. 2015-11-21 20:34:10 +01: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