Neo Technology Just Closed $20M in Funding
11–20 of 20 posts
Re: Neo Technology Just Closed $20M in Funding
#12I've only had a brief look at Neo4J, but I really like what I see. Graph databases seem to be marketed as an ideal way to represent a social network or similar where you want to represent the connections with other entities. I see them as much more than this. I love using document databases because I don't have to worry about strict schemas. However, I lose a lot when I have multiple entities that are related in some…
In my experience with Neo4J a few years ago, i naively used it as my primary DB. The latency (not suprising given its JVM based) was painful and often there are classic relational aspects that we tried to capture in the graph. This is ENTIRELY MY FAULT - not Neo4j, they never market it as that - just as MongoDb never markets itself as a true replace for relational problems. But that said there is plenty to not like a…
Re: Neo Technology Just Closed $20M in Funding
#13A good rule of thumb is whether you ever have a need to query the relations as well as the data. If you ever get to that point, you can be pretty well assured that a graph database will help you. Until then, the safer decision is to stick with a relational db for prod.
Also, check out OrientDB. I have found it to be superior in every way to Neo4j.
Re: Neo Technology Just Closed $20M in Funding
#14Earlier quoted context omitted.
The main reason is speed. Graph traversal is constant time as opposed to O(log n) for each traversal. The speed only becomes relevant later, and you can therefore add graph databases as a slightly delayed replica on top of a db for things you need to traverse fast.
This is true, however I think this again conflates two things: the relational model and the "tabular" data layout. I gather that databases like Neo4j obtain constant time traversal by storing each node's list of "relationships" at the same location as the node itself. We might be able to generalize this to a relational database, where every row in the database is stored together with the list of addresses of all othe…
Re: Neo Technology Just Closed $20M in Funding
#15I've been using Neo4j for around 3 months, but I'm unconvinced by the "graph" model as having any significant advantage over the relational model. A graph can be trivially modelled relationally as a "vertex" table and an "edge" table. A particular problem I have with the graph model is that edges cannot be referenced by other entries in the database; thus the schema designer must prefer using vertices to model all co…
The main reason is speed. Graph traversal is constant time as opposed to O(log n) for each traversal. The speed only becomes relevant later, and you can therefore add graph databases as a slightly delayed replica on top of a db for things you need to traverse fast.
Re: Neo Technology Just Closed $20M in Funding
#16Earlier quoted context omitted.
This is true, however I think this again conflates two things: the relational model and the "tabular" data layout. I gather that databases like Neo4j obtain constant time traversal by storing each node's list of "relationships" at the same location as the node itself. We might be able to generalize this to a relational database, where every row in the database is stored together with the list of addresses of all othe…
How? Describe a detailed solution.
Re: Neo Technology Just Closed $20M in Funding
#17Congrats to the team of Neo Technology. If you're interested in discovering how to visualize Neo4j graph databases, check out Linkurious : http://linkurio.us/
Re: Neo Technology Just Closed $20M in Funding
#18I've been using Neo4j for around 3 months, but I'm unconvinced by the "graph" model as having any significant advantage over the relational model. A graph can be trivially modelled relationally as a "vertex" table and an "edge" table. A particular problem I have with the graph model is that edges cannot be referenced by other entries in the database; thus the schema designer must prefer using vertices to model all co…
datalog is slow, even if performance was improved it still, not competitive with SQL. That said is really handy.
Re: Neo Technology Just Closed $20M in Funding
#19When ever I try Neo4J and Cypher it just feels slow and limited in comparison to the semweb competition.
Re: Neo Technology Just Closed $20M in Funding
#20Earlier quoted context omitted.
datalog is slow, even if performance was improved it still, not competitive with SQL. That said is really handy.
I'm told that Datalog is equivalent to SQL with recursive subqueries, which means that any Datalog query could be compiled to SQL. (Whether it's feasible to compile to efficient SQL, I don't know.)
Really this is based on my readings and few experiments, I'm not 100% sure that datalog can not be made faster and socialite (see below) seem to claim I'm wrong.
Datalog is the native query language of datomic. I can put the finger on it, but I think there is a project for querying cassandra with datalog+clojure.
This is the most recent work I'm aware of:
- python querying of hadoop with a datalog-like language http://socialite-lang.github.io/
- overview: http://fr.slideshare.net/Hadoop_Summit/t-325p211seo
Also best way to learn datalog: http://www.learndatalogtoday.org/