Tagged Questions
0
votes
1answer
72 views
Count relationship pairs in Neo4j
I'm starting dealing with Neo4j so I'm not really proficient on this topic. In figure below I have 2-mode (bipartite) graph where green node presents "document" and red node presents "term" which ...
-3
votes
1answer
70 views
What is the Most Interesting Usages for Neo4j Graph Database? [closed]
Besides Social Networks, Access Control Lists and Recommendations Engines, what is the most interesting usages for Neo4j Graph Database?
-1
votes
1answer
28 views
How to effectively retrieve two friends of each person in neo4j
For example, I have a neo4j graph like this:
n1 -> n1
n1 -> n2
n1 -> n3
n2 -> n4
n2 -> n5
n3 -> n6
The expected results are:
n1 -> n1
n1 -> n2
n2 -> n4
n2 -> n5
n3 ...
0
votes
1answer
72 views
Distributed database for tree structured data?
I'm looking for a database that is designed to handle tree structured data. I've looked into Neo4j and it's nice, but it doesn't really support sharding. Couchbase on the other hand isn't really built ...
1
vote
1answer
81 views
neo4j query for a node using python rest client
I have nodes in index with following proprties:
{'user_id': u'00050714572570434939', 'hosts': [u'http://shyjive.blogspot.com/'], 'follows': ['null']}
Now i have index and I am trying simple query ...
1
vote
2answers
66 views
Neo4j How to add multiple values to the property of a node
While i am creating nodes for one of the problem , I am stuck, after going through documentation I realised I couldn't find multi value property assignment to the node
For eg: Node 1 have property ...
0
votes
1answer
38 views
neo4jrestclient , to add property after node is created
I am trying to create new node , but when i add extra property in next line it fails .
For eg :
gdb = GraphDatabase("http://localhost:7474/db/data/")
index = gdb.nodes.indexes.create('blogger')
for i ...
0
votes
2answers
99 views
Neo4j Design: Property vs “Node & Relationship”
I have a node type that has a string property that will have the same value really often. Etc. Millions of nodes with only 5 options of that string value. I will be doing searches by that property.
...
1
vote
1answer
86 views
Introduction to object databases
I'm trying to understand the idea of noSQL databases, to be more precise, the concept behind neo4j graph database. I have experience with SQL databases (MySQL, MS SQL), but the limitations of managing ...
2
votes
1answer
36 views
Can I use Cypher to guarantee MRCA of a Tree Structure?
Hi there I've been working with neo4j and tree data and so far it's worked out great. However, I can't seem to find much documentation on how the pattern matching generally works so I can verify if a ...
0
votes
3answers
335 views
Using MongoDB and Neo4j together
I am starting a new project and I am looking at using MongoDB as the document storage facility and Neo4j as the mechanism to map relationships between documents and then I want to expose the results ...
1
vote
1answer
396 views
Should I go for document-based or graph database? (MongoDB vs Neo4j) [closed]
I am currently choosing a NOSQL database for the application which stores a lot of emails to given topics (=mailing lists). There is a huge number of emails for each of them. As an amateur in this ...
1
vote
1answer
89 views
Neo4j and big log files
I try to use n4j in my app, but I have problem with big log files. Are they necessary or is there some way to reduce the number and size of them?
At the moment I see files like:
...
0
votes
1answer
42 views
Design for non key-value data in neo4j
I have data something like this:
Berlin: capital, city, germany, europe, DE3, CET
Lyon: city, france, Rhône-Alpes, europe, CET
Warsaw: capital, europe, city, poland, masovian, CET
Toulouse: city, ...
0
votes
1answer
33 views
Is it possible to reference custom code in the Where-clause of Neo4J's Cipher Query Language?
Is it possible to use Neo4J's Cipher Query language (or another declarative language) but still reference custom code snippets (for instance to do custom WHERE-clauses based on, say, the result of a ...
0
votes
1answer
50 views
Testing neo4j with indexes
I want to test my neo4j project with nosql unit. This works fine as long as I don't need a lucene index. Is there a way to create a test database with an index?
I think graphml offers no possibility ...
0
votes
0answers
46 views
Neo4J modifying nodes ignored
i'm using this code for opening data base .
GraphDatabaseAPI graphdb2 = (GraphDatabaseAPI) new ...
0
votes
1answer
109 views
working with neo4j
Well i am working in gephi and there i have a plugin through which i have exported my graph to neo4j. Once exported it comes out to be folders in which there are some 10-12 files.
Now i have ...
0
votes
0answers
190 views
Neo4j - Unit testing REST Api calls
I'm about to use Neo4j Server (Rest Api).
I've thought to the way of unit testing Neo4j.
I found NoSqlUnit that play the same role as DbUnit but dedicated to NoSql database like Neo4j.
However, ...
0
votes
1answer
88 views
Design : Relation Vs. Node
I am new to graph database, and overwhelmed with its promised scope and power. When designing app, it is very important that we align our emotional design patterns with practical performance designs. ...
2
votes
1answer
1k views
Delete all nodes and relationships in neo4j 1.8
I know this question is asked by many people already
for my research, here's some questions asked before
How to delete all relationships in neo4j graph?
...
2
votes
2answers
179 views
Cypher query to match strong two way relationship and filter by property values in Neo4j
I would like to find a subgraph in Neo4j DB with only strong two way relationships.
Let's say the relationship is LOVES and attribute is Kisses then I would like to only find a subgraph where both ...
2
votes
1answer
129 views
Are all data types strings in Neo4j accessed by py2neo through the REST API?
I have a query of this form creating a new node in neo4j:
cypher.get_or_create_indexed_node(index="person", key="name", value="Fred", properties={"level" : 1}
However, when I query Fred to inspect ...
1
vote
1answer
162 views
Integrate igraph's community detection with neo4j
I am using the label.propagation.community algorithm from igraph package in R, to cluster my network.
if my graph data base is in neo4j database format, is there any R library that will let me load ...
0
votes
2answers
103 views
How can one replicate a graph database like Neo4J
I am noob in NoSQL world. but After going thru the basics of how Neo4J works, I didnt unerstand how will replication be fast compared to column or document databases or a plain key value DB.
It has ...
0
votes
2answers
223 views
Getting started with neo4j
I am completely new to neo4j and I am very sorry for asking such a basic question. I have installed neo4j, I am using the shell "localhost:7474/webadmin/#/console/"
I am looking for a good example ...
1
vote
1answer
53 views
How to get nodes that have a given amount of outgoing relationships with a given property in Neo4j Cypher?
In my domain a node can have several relationships of the same type to other entities. Each relationship have several properties and I'd like to retrieve the nodes that are connected by at least 2 ...
1
vote
2answers
268 views
how to speed up insertion in neo4j from mysql?
I have a dataset of 60000 items in mysql and i'm trying to insert it into neo4j. The insertion is taking place but it's taking a long time( approx. 10-15 per 3 sec). Is there any way i can speed it ...
0
votes
1answer
133 views
Guidelines for implementating database manager layer (neo4j) in Java
I am developing a java application that has to handle multiple uers and their requests: ie. a user can be created (registered), can be updated (change avatar,...), or add information to his account ...
0
votes
2answers
173 views
Neo4j Cypher query to find nodes with exact match (AND instead of OR)
I'm trying to create a query that bring me some node that have the exact match with a set of nodes. In this case I wanna bring experiences that have tags, for example, what experiences have tags: ...
1
vote
1answer
261 views
Resolving entities with Spring Data Neo4j returns wrong entity types
I'm experiencing some strange behavior when I'm looking up node entities with Spring Data Neo4j (SDN). If I use GraphRepository.findOne(long) it will return an entity with that identifier even though ...
0
votes
0answers
143 views
which graph database is better for scaling ? [closed]
Which graph database can be scale out easier ?
I don't mean to make master/slave database which master use for write and slaves use for read! I mean partitioning data into some servers because we ...
0
votes
1answer
242 views
Is Neo4j's Cypher query language open-source?
what is the status of the Neo4j's language Cypher? I really like it, but I would like to avoid the Neo4j lock-in. Are there some other Cypher interface like there are in Grmelin?
Regards
1
vote
2answers
103 views
what is the complexity of accessing a node in a graph generated by neo4j?
I consider working with dbpedia and use neo4j for this purpose. I have 2 things I don't understand:
What is the complexity of accessing a node in the graph?
If I have a huge DB such as dbpedia any ...
0
votes
1answer
532 views
Neo4j…how to get a visual representation of my data?
I have loaded an embedded instance of Neo4j with some data, and would like to know how I can now view this graph. I saw an intro video here: ...
4
votes
3answers
1k views
Graph DBs vs. Document DBs vs. Triplestores
This is a somewhat abstract and general question. I'm interested in the inherent (as well as implementation-specific) properties of different approaches to persist unstructured data with both lots of ...
3
votes
4answers
403 views
Graph and Relational Data Models
To me, relational data is a graph, where each table is a node, and each foreign key is an edge connecting the two nodes together.
So when I hear about things like Neo4j and "graph databases", it is ...
0
votes
1answer
143 views
Not able to instantiate neo4j
I'm starting to learn the neo4j DB. My test code is below:
@Test
public void persistedMovieShouldBeRetrievableFromGraphDb() {
GraphDatabaseService graphDB = new ...
1
vote
2answers
486 views
neo4j - graph database along with a relational database?
this is a question on best practice, i understand that there are a lot of different options for doing this, but i would like your opinions as to how you would approach solving this problem. Please ...
-1
votes
2answers
151 views
How to store Facebook user education in neo4j
I want to store Facebook educations of a user in Neo4j, so that i can query on any attribute combinations.
Currently Fields I want to save of Facebook education field
...
0
votes
2answers
157 views
graph DB equivalent of bipartite network projection?
Suppose a network with two kinds of nodes, say users and places, with the relationship "has been in". This is a bipartite network, and from it usually a module such as networkx provides the ...
2
votes
2answers
304 views
Ideas for Doing Aggregates in a graph database
I know there must be a lot of people out there doing this.
Working on a project using neo4J. Let's say I have an entity called Photo. Now it's out on the internet and a million people like it. ...
3
votes
1answer
274 views
How to organize nodes in a graph database
We're building a graph database, and we're wondering how to model the graph structure. The idea is having users who can relate to several things (friends, posts in blogs, etc). Our doubt is if it's ...
3
votes
2answers
467 views
Neo4j (or any other graph database) modeling
I'm starting to work with graph databases, and in my team we've started modeling a graph for our software. The problem comes when we try to "document" the model, to see the structure of our database. ...
3
votes
1answer
491 views
Why Neo4j is faster than SQL
I am a newbie to Neo4j, and can't quite understand why Neo4j must be faster than an efficient SQL query. Is it because of data structure or underlying query implementation? I really appreciate if ...
3
votes
3answers
2k views
How to store tree data in a Lucene/Solr/Elasticsearch index or a NoSQL db?
Say instead of documents I have small trees that I need to store in a Lucene index. How do I go about doing that?
An example node in the tree:
class Node
{
String data;
String type;
...
1
vote
0answers
264 views
can't save @RelationshipEntity
I'm try to save some @RelationshipEntity:
I've questionnaires, each of them related to some questions.
First I tried like follow:
@RelatedToVia
private Set<HasQuestionRelationship> question = ...
0
votes
1answer
69 views
Graphalgorithm execution in Graphdatabases
Where are the graphalgorithms like traversals or shortest-path executed using a graphdatabase? Are they executed on the database-server itself or are they executed on the clientside? In the latter ...
2
votes
3answers
2k views
Which noSQL database is best for high volume inserts / writes?
Which nosql system is better equipped for handling high volume inserts out of the box?
Preferably, running on 1 physical machine (many instances allowed).
Has anyone done any benchmarks? (googling ...
4
votes
4answers
1k views
Neo4j and ORM (Hibernate)
I've been using RDBMSes since college and am really struggling with the underlying concepts of NoSQL databases...but I think their concept is really cool.
I believe I understand the following (please ...




