Login
Remember
Register
Ask a Question
Mention some of the important characteristics of neo4j?
0
votes
asked
Dec 29, 2023
in
Neo4j
by
Robin
Mention some of the important characteristics of neo4j?
neo4jcharacteristics
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 29, 2023
by
Robin
Some important characteristics of neo4j includes
Materializing of relationship at creation time, resulting in no penalties for runtime queries
Continuous time traversals for relationship in the graph both in breadth and depth due to double linking on the storage level between nodes and relationships
Relationship in Neo4j is fast and make it possible to materialize and use new relationships later on to “shortcut” and speed up the domain data when new requirement arise
It can do memory caching for graphs and provides compact storage, resulting in efficient scale-up
It is written on the top of JVM
...