Is there some simple way to generate random data when playing with Neo4j browser, please? In other databases I can do something like this:
FOR i IN 1..1000
INSERT {
name: CONCAT("test", i),
value: 100 + FLOOR(RAND() * (150 - 100 + 1))
} I...
Hi, I was wondering whether there's some rule of thumb when Neo4j starts making sense over something like Postgres. I guess I more or less understand the theory with constant time in graph db vs O log N in postgres' indexes. But what size of dataset ...
Thank you for detailed answer. It's a fair point to use data structure that feels more natural for a given case.
My "maximising satisfaction" feature was less about recommendations, but rather about satisfying excessive demand for limited capacities ...