| ▲ | pphysch 5 hours ago | |
Yeah: Postgres, etc. When you actually need to run graph algorithms against your relational data, you export the subset of that data into something like Grafeo (embedded mode is a big plus here) and run your analysis. | ||
| ▲ | adsharma 4 hours ago | parent [-] | |
That importing is expensive and prevents you from handling billion scale graphs. It's possible to run cypher against duckdb (soon postgres as well via duckdb's postgres extension) without having to import anything. That's a game changer when everything is in the same process. | ||