Tagged Questions
38
votes
8answers
8k 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 ...
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 ...
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/)?
6
votes
1answer
470 views
Neo4j database research
I recently started researching database features of databases.
At the moment I'm looking into Neo4j Graph database.
Unfortunately, I can't find every bit of information I need.
I found most ...
6
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 ...
5
votes
2answers
1k views
How to delete/create databases in Neo4j?
Is it possible to create/delete different databases in the graph database Neo4j http://neo4j.org/ like in MySQL? Or, at least, how to delete all nodes and relationships of an existing graph to get a ...
2
votes
0answers
85 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
4answers
157 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
2answers
229 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
209 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
3answers
92 views
An apt database (and/or) framework suggestion needed
Well, I've taken help of Google, Stackoverflow and whatever else I could find, did as much as I could, but it seems that I am unable to find out an exact answer! I have multiple queries, and I would ...
2
votes
1answer
214 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
2answers
330 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
1answer
222 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.
...
1
vote
1answer
67 views
Using Neo4j with Opa
How do I use Neo4j as database with Opa?
Does db support has to be added to Opa before I can use a particular db?
1
vote
3answers
211 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
0answers
88 views
Save a Javascript object into a NoSQL database and retrieve it afterwards
I have an Javascript object that I want to save in a NoSQL database (Neo4j).
Is there a way to save this object in the database to retrieve it later on and have it acting like it was never sent to ...
1
vote
1answer
237 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
233 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
1answer
218 views
I need to store & query “relational, hierarchical, graph, document” hybrid data. I'm looking for the best DB solution
I am working on what is currently a pet project. Soon it will be going into mainstream production. My biggest barrier is the data storage.
The bulk of the data is "document" with specific indexes ...
0
votes
1answer
129 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
3answers
182 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
1answer
107 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 ...