Tagged Questions

A graph database uses graph structures with nodes, edges, and properties to represent and store information.

learn more… | top users | synonyms

116
votes
11answers
6k views

What scalability problems have you solved using a NoSQL data store?

NoSQL refers to non-relational data stores that break with the history of relational databases and ACID guarantees. Popular open source NoSQL data stores include: Cassandra (tabular, written in ...
37
votes
8answers
7k views

Has anyone used Graph-based Databases (http://neo4j.org/)?

I have used Relational DB's a lot and decided to venture out on other types available. This particular product looks good and promising: http://neo4j.org/ Has anyone used graph-based databases? What ...
20
votes
12answers
6k views

Graph database for .NET

I've been designing an application, based on .NET/Mono framework, which should make an heavy use of the shortest-path in a graph theories and I would like to use a native solution to traverse the ...
9
votes
7answers
2k views

Graph-structured databases and Php

I want to use a graph database using php. Can you point out some resources on where to get started? Is there any example code / tutorial out there? Or are there any other methods of storing data that ...
9
votes
2answers
3k views

FlockDB - What is it? And best cases for it uses

Just came across FlockDB graph database. Details at github /flockDB. Twitter claims it uses FlockDB for the following: Twitter runs FlockDB on a large cluster of machines. we use it to store ...
9
votes
6answers
2k views

What is the difference between graph-based databases and object-oriented databases?

What is the difference between graph-based databases (http://neo4j.org/) and object-oriented databases (http://www.db4o.com/)?
8
votes
6answers
3k views

Graph databases and RDF triplestores: storage of graph data in python

I need to develop a graph database in python (I would enjoy if anybody can join me in the development. I already have a bit of code, but I would gladly discuss about it). I did my research on the ...
7
votes
1answer
168 views

Calculating a user's importance or 'Betweenness Centrality' from a user's followers?

I want to know how I can find interesting relationships between users accounts such as the most connected, or most valuable users based on their connections to others. Below I have the two tables I ...
7
votes
1answer
582 views

Rails 3 and graph databases

A Rails 3 application running on Postgresql needs to switch to a graph database to be able to grow up. There are many of them and they all offer different kind of API, REST mostly. I am highly ...
7
votes
3answers
1k views

Is it a good idea to use MySQL and Neo4j together?

I will make an application with a lot of similar items (millions), and I would like to store them in a MySQL database, because I would like to do a lot of statistics and search on specific values for ...
7
votes
2answers
390 views

How would you implement a revision control system for your models in your prefered db paradigm?

I found out that RCS for models is an interesting problem to solve in the context of data persistence. They are several solution using the django ORM to achieve this django-reversion and AuditTrail ...
6
votes
2answers
736 views

Graph databases vs. triple stores

What's currently the best choice to persist graph-like structures? Graph databases (e.g. Neo4j) or RDF triple stores (e.g. Virtuoso)? For example, we have the following use case: the weakly ...
6
votes
2answers
361 views

When developing web applications when would you use a Graph database versus a Document database?

I am developing a web-based application using Rails. I am debating between using a Graph Database, such as InfoGrid, or a Document Database, such as MongoDB. My application will need to store both ...
5
votes
3answers
528 views

Storing very large graphs on disk/streaming graph partitioning algorithms?

Suppose that I have a very large undirected, unweighted graph (starting at hundreds of millions of vertices, ~10 edges per vertex), non-distributed and processed by single thread only and that I want ...
4
votes
3answers
97 views

What is a graph database?

Looking at options for an embedded NoSQL database written in Java, graph databases come up. What is a graph database (especially in contrast to a key-value store and a document-oriented database) and ...
4
votes
4answers
563 views

Is it possible to work with OrientDB using C#?

Are there any implementations, api or examples of OrientDB and C#. The reason I am looking at OrientDB is becuase it's the only one that I found that is a combination of Graph and Document. Any ...
4
votes
1answer
221 views

What is the graph database that can scale out horizontally, handle large volumes of data, and perform low-latency queries?

Which is the graph database that supports limitless scale out, handles large volumes of data, and can perform low-latency queries? Preferably one that integrates well with Hadoop. I have been ...
4
votes
4answers
1k views

Hype around graph databases… why?

There is some hype around graph databases. I'm wondering why. What are the possible problems that one can be confronted with in today's web environment that can be solved using graph databases? And ...
3
votes
3answers
241 views

Directional Relationships with different name for each direction

In GraphDB platforms (Net4j, OrientDB, FlockDB, HyperGraphDB...) it is possible to define relationships between nodes. I need to define directional relationships, such that the relation has different ...
3
votes
2answers
533 views

connecting to OrientDB from PHP

I would like to write an adapter for PHP for the binary API of OrientDB. But I need a bit of help from someone who has experience with raw socket communications in PHP - I can't seem to even get past ...
3
votes
2answers
689 views

Performance-oriented design of a graph-based (key/value) database

I am in the preparation phase of the design a graph-based (or key-value) database library for C++ which many here will find similar to projects such as http://neo4j.org/. Since this is a very early ...
2
votes
0answers
53 views

What can an RDBMS do that Neo4j (and graph databases) cant? [closed]

“A Graph Database –transforms a–> RDBMS” The Neo4j site seems to imply that whatever you can do in RDBMS, you can do in Neo4j. Before choosing Neo4j as a replacement for an RDBMS, I need some ...
2
votes
0answers
63 views

sorting relationships in a graph database by reverse chronological order

suppose I'm making a social application whose data I store with a graph db, where entities (people, things...) are nodes (w/ property "name") and actions are relationships (w/ properties "what" and ...
2
votes
3answers
64 views

Representing (and incrementing) relationship strength in Neo4j

I would like to represent the changing strength of relationships between nodes in a Neo4j graph. For a static graph, this is easily done by setting a "strength" property on the relationship ...
2
votes
2answers
147 views

ORM with Graph-Databases like Neo4j in Python

i wonder wether there is a solution (or a need for) an ORM with Graph-Database (f.e. Neo4j). I'm tracking relationships (A is related to B which is related to A via C etc., thus constructing a large ...
2
votes
1answer
130 views

How to switch graphes (on Neo4j)?

How do I come back on the Neo4J graph after using g = new TinkerGraph() I guess it's something like g.loadGraphML(...) EDIT: Your answer helped me to better understand how loadGraphML() ...
2
votes
1answer
182 views

How to Model Real-World Relationships in a Graph Database (like Neo4j)?

I have a general question about modeling in a graph database that I just can't seem to wrap my head around. How do you model this type of relationship: "Newton invented Calculus"? In a simple graph, ...
2
votes
2answers
196 views

Is a graph database better for shortest paths algorithms?

My objective is to write a shortest path algorithm for a road network. Currently my architecture is something like that: I store all the data in the PostGIS enabled PostgreSQL database. I do one ...
2
votes
2answers
184 views

Does it make sense to use neo4j to index a file system

I am working on a Java based backup client that scans for files on the file system and populates a Sqlite database with the directories and file names that it find to backup. Would it make sense to ...
2
votes
1answer
108 views

Interactive network graph for my website?

I have a neo4j DB in my backend and I would like to display a subset of the graph to the user in a aesthetically pleasing and interactive fashion on the front-end. I'd like it to look quite ...
2
votes
1answer
189 views

Graph database query

I have undertaken a project that tracks shops from where a user can buy an item. I have decided to use Neo4j as the database. This is a part of the database that I have in mind: There is a node for ...
2
votes
1answer
413 views

Storing multiple graphs in Neo4J

I have an application that stores relationship information in a MySQL table (contact_id, other_contact_id, strength, recorded_at). This is fine if all I need to do is show who a contact's ...
2
votes
2answers
291 views

Good graph database for finding intersections (Neo4j? Pegasus? Allegro?…)

I'm looking for a good graph database for finding set intersections -- taking any two nodes and looking at whether their edge endpoints "overlap." Social network analogy would be two look at two ...
2
votes
0answers
63 views

Horizontally-scalable, immediate-consistency graph-database?

Is there any horizontally-scalable, immediate-consistency graph-database?
2
votes
2answers
399 views

Looking for distributed, in-memory Graph DB

Is there a database which will satisfy all (or at least most) of this requirements? Graph oriented - optimized for storing graphs and traversal(e.g HyperGraphDB, Neo4j) Running in memory, but having ...
1
vote
1answer
46 views

Why does Gremlin idx returns with null although the DB is not empty?

I am opening a graph using: g = new Neo4jGraph('...path...'); then adding a vertex using: myVertex = g.addVertex(['type':'X', 'Y':Z]); I can see the db afterwards has a single vertex (using ...
1
vote
3answers
121 views

where can I find a neo4j quick tutorial? [closed]

I was trying to save directed graphs into databases for further processing and query. And neo4j seems to fit my needs. However, I don't seem to find a good tutorial regarding the following: Creating ...
1
vote
1answer
59 views

Deleted node reappears in Neo4j

I'm just getting started with Neo4j and running "Hello World" type examples. I create a new database and print out the number of nodes, which is 1 (since there appears to be a default node when a ...
1
vote
0answers
62 views

Google Prediction API vs Graph Databases for Generated Recommendations ?

(I admit I am no expert in graph databases or NoSQL, having only used it for a few hobby projects so far.) I've been using technologies like InfiniteGraph and Stig for recommendations - these are ...
1
vote
1answer
84 views

Representing a cooking recipe in a graph database

I'm trying to wrap my head around graph databases. So maybe someone could help explain to me the right way to model this relationship. This is mostly from the perspective of neo4j, but I assume it ...
1
vote
1answer
118 views

How to update several vertex properties on Gremlin?

I want to add several properties on a vertex. I could do: g.v(1).firstname='Marko' g.v(1).lastname='Rodriguez' But how to add these properties with the following hash {firstname:'Marko', ...
1
vote
1answer
77 views

How to chain commands in Gremlin?

The following command works t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map} print t The following command works t = new Table(); ...
1
vote
3answers
138 views

which graph database to use

Are there any open-source graph-databases around which are able to store binary data, scale horizontally and optionally provide versioning of stored data? I am overwhelmed by the sheer amount of dbs ...
1
vote
3answers
148 views

Using Multiple Database Types to Model Data in a single application

Does it make sense to break up the data model of an application into different database systems? For example, the application stores all user data and relationships in a graph database (ideal for ...
1
vote
1answer
324 views

How could I write this queries in neo4j?

I'm very new to neo4j and to graph database in general. I'm prototyping an app, and I don't know how should i write these queries I've this domain: User Restaurant Review TypeOfFood So a ...
1
vote
1answer
216 views

How to store tree structure using neo4j and gremlin

I want to store following directory tree structure using neo4j local database and Gremlin in Java. (ROOT) / \ Dir2 Dir3 / \ \ Dir4 ...
1
vote
1answer
51 views

Which database have you had the best experience with to handle friending on the back end?

Since my last question was considered subjective :( , I'm trying to make it more specific. I'm building an application in PHP where users can "friend" each other. This seems to be best suited to a ...
1
vote
2answers
62 views

Graph database that supports efficient sorting and/or range retrieval

Using Twitter's data model as an example: User A follows N other users, each of whom posted N different posts. Posts are timestamped. Is there a data store or graph database that supports ...
1
vote
1answer
226 views

neo4j with thousands of edges

I need a strong database to query very often with some thousands of nodes, and about 2000 edges each for each node. Is neo4j able to manage these relationships? Do I have to find another solution?
1
vote
0answers
201 views

Python: Using RDFLIB to graph a Sesame database

Is it possible to draw a graph of a Sesame RDF database using RDFLIB? This is what I tried: endpoint = ...

1 2