Tagged Questions
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 ...
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/)?
7
votes
1answer
585 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 ...
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 ...
2
votes
0answers
55 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
3answers
65 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
150 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
132 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
183 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
1answer
219 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
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
188 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
109 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
190 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
414 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 ...
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
123 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
61 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
1answer
86 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
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
3answers
149 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
326 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
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
3answers
350 views
Embeddable GraphDBs?
Could you recommend me GraphDB that can be embedded in one app process like Neo4j, but must be free for commercial usage and must supports C# or Java?
Thank you for any advice!
1
vote
1answer
168 views
Problem Working with Neo
I downloaded Neoclipse Source and downloaded the Neo4J source. However some of the classes that the Neoclipse source file refers to are not found in the Neo4J source. Are they deprecated? Can I get ...
0
votes
1answer
24 views
How to merge vertices with same properties in Gremlin?
Basically If I have a graph where Rob has an apple and Anna also has an apple like that:
Rob --has-->apple
Anna --has-->apple
which is obviously a mistake. I only want one 'apple' vertex with edges ...
0
votes
2answers
93 views
How do I find disconnected nodes on neo4j with Cypher?
I am toying with neo4j and noticed that all Cypher queries need a starting point in the START clause.
I was wondering how can I find all disconnected nodes using Cypher ?
thanks
0
votes
1answer
69 views
why java.lang.StackOverflowError error is coming in groovy
while running following code :
def v1=[];
def p=[];
v.as('x')
.except(v1).sideEffect{v1.add(it)} // step 1
.outE('priority').inV // step 2
...
0
votes
1answer
69 views
After 128th node is created in neo4j index no more nodes can be accessed
This seems like a very strange problem. I'm stress testing my neo4j graph database, and so one of my tests requires creating a lot of users (in this specific test, 1000). So the code for that is as ...
0
votes
2answers
69 views
neo4j - Property AutoIndexer not storing values
The problem that I'm running into is that after I make an AutoIndex index a certain property, I can add a key/value pair and the index won't show that it's there. I'm relatively new to neo4j so my ...
0
votes
1answer
102 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
0answers
165 views
Create new db to neo4j with java library
I try to follow this guide: http://docs.neo4j.org/chunked/snapshot/examples-hello-world.html but I have a fatal error when I try to create a db.
This is the error:
org.neo4j.jmx.impl.JmxExtension ...
0
votes
1answer
83 views
Multiple relationships of the same type but with different properties between the same two nodes
Can I create multiple relationships of the same type between the same two nodes? I am trying to discover patterns in nodes connected with the same relationship type. For e.g., relation PERFORMED_BY ...
0
votes
3answers
93 views
How do I make neo4j not accessible to the world?
I'm running neo4j version 1.5M01. I've also tried version 1.4.1. And I can't figure out how to stop it from running in hideously insecure mode, where anyone who connects to it over HTTP has full ...
0
votes
3answers
152 views
Object oriented programming in Graph databases
Graph databases store data as nodes, properties and relations. If I need to retrieve some specific data from an object based upon a query, then I would need to retrieve multiple objects (as the query ...
0
votes
0answers
331 views
Neo4j REST traverse issue
I have a neo4j graph DB, in which I have customers, documents which are nodes. There are other type of intermediary nodes and of course there are links between customers, intermediary nodes and ...
0
votes
1answer
103 views
Neo4j Querying Data Across Sessions
I am having trouble accessing previously created databases in the embedded Java version of Neo4j. What I'd like to do is open a GraphDatabaseService, add several million relationships (not using ...
0
votes
1answer
202 views
Hosting an ASP.NET web application backed by Neo4j
I already have ASP.NET hosting, but I'm not sure how to run my application off Neo4j, since it requires a Java stack.
It seems my only options are:
Get separate Java/Linux hosting, and install ...
-1
votes
1answer
41 views
What are the options to create a graph database from URL manually?
So i have to subjectively/ manually copy a number of URLs. I will then map out the relationships between these URLs by links. I can do this by pasting the links in a
Graph database like neo4j, ...