mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
Feature/memgraph optim (#193)
* Separate memgraph query/write modules to optimise for memgraph * Used 1GB memory for Memgraph * Deployed specialised memgraph query/write processors, created memgraph indexes * One triple is loaded as a single transaction * Fixed index creation
This commit is contained in:
parent
e3d06ab80b
commit
bffaf62490
12 changed files with 651 additions and 4 deletions
|
|
@ -16,7 +16,7 @@ memgraph + {
|
|||
engine.container("store-triples")
|
||||
.with_image(images.trustgraph)
|
||||
.with_command([
|
||||
"triples-write-neo4j",
|
||||
"triples-write-memgraph",
|
||||
"-p",
|
||||
url.pulsar,
|
||||
"-g",
|
||||
|
|
@ -50,7 +50,7 @@ memgraph + {
|
|||
engine.container("query-triples")
|
||||
.with_image(images.trustgraph)
|
||||
.with_command([
|
||||
"triples-query-neo4j",
|
||||
"triples-query-memgraph",
|
||||
"-p",
|
||||
url.pulsar,
|
||||
"-g",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue