Hi everybody! If you haven't seen through other channels, we have this interesting news.
Neo4j Graph Database Platform
Announcing Neo4j AuraDB Free
We're excited to announce that everyone can now use Neo4j AuraDB Fr...
Read more at the link below:
Neo4j Graph Database Platform – 12 Nov 20
The Great Hookup: Announcing Neo4j Connector for Apache Spark
Announcing a new and great integration tool that moves and reshapes data bi-directi...
Neo4j Graph Database Platform – 12 Nov 20
The Great Hookup: Announcing Neo4j Connector for Apache Spark
Announcing a new and great integration tool that moves and reshapes data bi-directionally between Neo4j and Apach Sp...
New technical article on a key graph analysis technique:
How do you look at a network of inter-related companies and determine the total value of a trading relationship, or the impact in bad times?
Neo4j Graph Database Platform – 2 J...
That page is pretty good. The use cases they mention are very similar to what Neo4j itself would tell you: https://neo4j.com/use-cases/
What all of the use cases they list have in common is that a strong element of the use case is "connections bet...
This is a really fantastic question. It's so precisely worded. I've seen many similar questions asked in things like classroom assignments.
Let's discuss this. What have you found so far online? What do you make of it? Of the answers that you...
The root cause is the "stop-the-world" GC pauses. The reason you're seeing CPU spikes is that the database is allocating memory and then getting stuck in periods where it has to free up (garbage collect) memory and the logs that say "stop-the-world...
There's no real "right" algorithm, it always depends on what you're trying to do.
What you're describing sounds like clustering to me. You want to maybe identify "islands" of nodes in a bigger graph based on what is related to what, and if things ar...
What have you tried so far? Do you have a JSON file? You might take a look at apoc.load.json to get the data into Neo4j.
You'll need cypher to use UNWIND on the array and create a node for each dictionary in the array.