Tagged Questions

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 ...
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
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
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 ...
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
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
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
2answers
288 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
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
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
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
3answers
246 views

How graph databases store data to a persistent storage?

How graph databases store data to a persistent storage? PKV
0
votes
0answers
23 views

Web application framework for massive string and numeric data crunching

My client has a web application for doing graphical statistical analysis on massive amounts of data returned from a backend MS SQL Server. The application is PHP-based, using PHP for fetching data ...
0
votes
3answers
149 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
41 views

Efficient algorithm to store millions of data in a file

We have a mini project to make a simple Graph database. We've thought of storing data in a CSV file. But we are still not sure which algorithm would facilitate storing millions of data in a file ...
0
votes
2answers
54 views

Is there such a thing as a schema in a graph database?

Is there such a thing as a schema in a graph database? For example, can you specify which types of node can have relationships with which other types of node? What does such a schema look like?
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
2answers
290 views

What's the key difference between a graph-database and a object-oriented database?

I'm finding a database which can store in-memory data structure naturally. In other words, the object graph. I once have used db4o, it's quite good but somewhat lacking. And I found a new concept of ...
0
votes
3answers
151 views

What would you recommend to read to a person who is going to write his own DB?

Since there are no answers to my previous question. I'm really thinking to implement a custom DB which will satisfy my requirements. Yes I know, sounds crazy. But what books, articles and etc. ...