Tagged Questions

13
votes
6answers
6k views

Graph Database in Java (other than Neo4J)

Greetings, Is there any open source graph database available other than Neo4J?? NOTE: Why not Neo4J? Neo4J is opensource, but counts primitives (number of nodes,relationships & properties). If ...
5
votes
4answers
1k views

What are the best ways to store Graphs in persistent storage

I am wondering what the best ways to store graphs in persistent storage are, for later analysis, search, clustering, etc. I see neo4j being an option, I am curious if there are also other graph ...
4
votes
2answers
79 views

How to persist community information in a graph

I have some graph databases (friends networks, purchasing history, etc.) that I persist with Neo4j. I plan to analyze these with community detection algorithms such as Girvan Newman. These algorithms ...
3
votes
1answer
937 views

how to find a particular node in Neo4j

how to find the particular node using the Neo4j API.When i refereed the docs i got some code to get all nodes However if i have a node called "XYZ" I would like to know how to obtain ONLY that ...
2
votes
1answer
303 views

Use Gremlin to find the shortest path in a graph avoiding a given list of vertices?

I need to use Gremlin find the shortest path between two nodes (vertices) while avoiding a list of given vertices. I already have: v.bothE.bothV.loop(2){!it.object.equals(y)}.paths>>1 To get my ...
2
votes
4answers
141 views

Graph Database to Count Direct Relations

I'm trying to graph the linking structure of a web site so I can model how pages on a given domain link to each other. Note I'm not graphing links to sites not on the root domain. Obviously this ...
2
votes
1answer
220 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 ...
2
votes
2answers
199 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
1answer
191 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
415 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
1answer
209 views

which graphDB will perform best for this specific type of graph-related query? neo4J? flockdb?

I have a large, non-cyclic directed graph. Every node has some key/value pairs. Some of the keys can be searched by range. Let's say all nodes have these keys: color - red, blue, green, etc. ...
2
votes
1answer
147 views

How to represent user paths through a web site in a database?

I want to be able to query a database so that I can find out which pages on a web site users visit before registering. I was planning on using a graph database - neo4j probably - but I can't decide ...
1
vote
2answers
75 views

How to model airport/flight data in a graph database like neo4j

I need to model airline flight data in a graph database (I am specifically working with neo4j, though I will consider others if that becomes problematic). My question is more about how to model this ...
1
vote
1answer
126 views

Neo4j/Gremlin/Cypher: how to get all nodes until i reach a certain distance (depth) in a map-like setup?

I have a simple graph with fields - each fields has 4 neighbours (north-east-south-west): @NodeEntity public class Field { @GraphId Long id; Field north; Field east; Field south; ...
1
vote
1answer
67 views

How to connect Neo4j with Zest?

In Java, I have a Neo4j EmbeddedGraphDatabase. How can I transform this into a Graph that Zest can display?
1
vote
1answer
78 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
1answer
153 views

neo4j heroku hosting

I have a web application deployed on heroku. I just introduced Neo4j as data structure and, of course, I have to integrate it in production on heroku. I read on this link ...
1
vote
2answers
92 views

Web frameworks oriented towards graph databases?

I am to build a web app and I have realized that my domain data will be best represented by a graph structure. Which web frameworks out there does the greatest job at integrating with graph databases ...
1
vote
1answer
227 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
1answer
221 views

How to calculate mutual friends with neo4j?

I want to use neo4j to manage relationship among users. How can I get mutual friends using it?
1
vote
2answers
219 views

Efficient way to find node set having relationships to given nodes using neo4j

Is there an efficient way with given two nodes to find a set of their common nodes (with defined relationships). For example, having nodes A1, B1, C1-C4 connected with relationships x and y: A1 ...
1
vote
1answer
607 views

Neo4j Performing shortest path calculations on stored data

I would like to store the following graph data in the database, graph.makeEdge( "s", "c", "cost", (double) 7 ); graph.makeEdge( "c", "e", "cost", (double) 7 ); graph.makeEdge( "s", "a", "cost", ...
0
votes
1answer
43 views

How to store and retrieve different types of Vertices with the Tinkerpop/Blueprints graph API?

When looking at the Tinkerpop-Blueprints API it is quite straight forward to use one type of vertices but how can I store two? E.g. Users and their interests? And how can I get a Vertex by id? I ...
0
votes
1answer
105 views

Generic traversal of a directed tree with Neo4J

I modelled a directed tree structure using the graph database Neo4J. So I have something like this: http://ouwarovite.net/YAPC/220px-Binary_tree.svg.png (not mandatory binary) Users of my database ...
0
votes
1answer
105 views

how to create a graphDatabase in Neo4j

I am very new in Neo4j and graph database.I just installed Neo4j server , but i am not able to understand where i create a database, where fire query, where create a table for my database.please help ...
0
votes
1answer
76 views

Specification of a directed graph

This is a fairly advanced topic related to directed graphs. I am looking into NOSQL technology for a project. In particular, using graph databases. It's a perfect fit in supporting the rich model I ...
0
votes
1answer
52 views

what's the over head per node and per edge for single entry in neo4j

I have a graph of integers (say 12 bytes). Each node has 200 outgoing edges. I have 100*10^6 nodes. Given the 'key' weights 12b what is the total size, when it is represented in neo4j? Whats ...