Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

MATCH (externalModule:TS&ExternalModule)-[:EXPORTS]->(externalDeclaration:TS&ExternalDeclaration)
MATCH (externalModule)-[:IS_IMPLEMENTED_IN]->(internalModule:TS&Module)
MATCH (externalModule)-[:EXPORTS]->(internalDeclaration:TS&!ExternalDeclaration)
MATCH (internalModule)-[:EXPORTS]->(internalDeclaration:TS&!ExternalDeclaration)
WHERE externalDeclaration.name = internalDeclaration.name
WITH externalDeclaration, internalDeclaration
CALL { WITH externalDeclaration, internalDeclaration
Expand Down
59 changes: 48 additions & 11 deletions graph-visualization/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions scripts/configuration/template-neo4j-v4.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
dbms.security.procedures.unrestricted=apoc.*,gds.*

# Memory: Java Heap Size
dbms.memory.heap.initial_size=4g
dbms.memory.heap.max_size=4g
dbms.memory.heap.initial_size=8g
dbms.memory.heap.max_size=8g

# Memory: The amount of memory to use for mapping the store files.
dbms.memory.pagecache.size=1g
dbms.memory.pagecache.size=2g

# Memory: Exits JVM on the first occurrence of an out-of-memory error.
dbms.jvm.additional=-XX:+ExitOnOutOfMemoryError

# Memory: Limit the amount of memory that all of the running transaction can consume.
dbms.memory.transaction.global_max_size=3g
dbms.memory.transaction.global_max_size=6g

# Memory: Limit the amount of memory that a single transaction can consume.
dbms.memory.transaction.max_size=3g
dbms.memory.transaction.max_size=6g
10 changes: 5 additions & 5 deletions scripts/configuration/template-neo4j.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
dbms.security.procedures.unrestricted=apoc.*,gds.*

# Memory: Java Heap Size
server.memory.heap.initial_size=4g
server.memory.heap.max_size=4g
server.memory.heap.initial_size=8g
server.memory.heap.max_size=8g

# Memory: The amount of memory to use for mapping the store files.
server.memory.pagecache.size=1g
server.memory.pagecache.size=2g

# Memory: Exits JVM on the first occurrence of an out-of-memory error.
server.jvm.additional=-XX:+ExitOnOutOfMemoryError

# Memory: Limit the amount of memory that all of the running transaction can consume.
db.memory.transaction.total.max=3g
db.memory.transaction.total.max=6g

# Memory: Limit the amount of memory that a single transaction can consume.
db.memory.transaction.max=3g
db.memory.transaction.max=6g
Loading