[Neo4j] Re: New Structr SNAPSHOT version - with integrated Neo4j server!

2014-11-12 Thread Tom Zeppenfeldt
Hi guys, I'm running the 11 snapshot now. The phrase You just have to add 'Neo4jService' to the list of configured services is too cryptic for me. Just too many places where I can configure stuff, including services on my Mac. Any explication would be welcome. Thanks On Monday, 10 November

[Neo4j] using neo4j with c/cpp

2014-11-12 Thread zh18
Hi - I have one question , How can i use neo4j with c/c++ ? -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more options,

Re: [Neo4j] replication factor in neo4j ha server

2014-11-12 Thread abadyan
Hi, I see this question is a bit out of date. Has there been a change in Neo4j that might allow what you called the common meaning of replication factor? Thanks, Alex. On Monday, December 17, 2012 10:19:36 AM UTC+2, Mattias Persson wrote: Not in the common meaning of replication factor (where

[Neo4j] Lucene Configuration for Term Vectors (and other Field. options)

2014-11-12 Thread Sky Hester
I’m starting a project with the goal of clustering nodes by text properties in a Neo graph. The first, most straightforward step is to establish a performance baseline using term-vector methods, which is relatively easy with Lucene’s TermFreqVector. Storing term vectors is easy to do with

[Neo4j] SQL Server to Neo4j Imports

2014-11-12 Thread Isaac Vargas
I had asked some questions of Michael Hunger about CSV Imports, and per his advice moving the discussion thread to the Group. Here is the discussion below Hi Michael, my name's Isaac Vargas, I attended GraphConnect this past October and have been diving head first into Neo4j. I've been making

[Neo4j] New Neo4j SPARQL Plugin

2014-11-12 Thread Niclas Hoyer
Hi, as part of my master thesis I developed a new SPARQL plugin for Neo4j. The current plugin https://github.com/neo4j-contrib/sparql-plugin is developed as server plugin and somewhat limited, as the SPARQL protocol standards are not correctly implemented (regarding result formats and RDF

[Neo4j] [Idea] Declaring an expected result for write-based Cypher queries

2014-11-12 Thread Byron Ruth
I am submitting Cypher queries over the HTTP transactional endpoint in batches and began using a pattern of adding an expected value as part of my query. For example, a query like this: MATCH (s {foo: 1}), (e {bar: 1}) CREATE (s)-[:LINKS]-(e) RETURN 1 would be submitted as: {

[Neo4j] Very Slow Simple Queries (System Details Inside)

2014-11-12 Thread Eric Gade
Hello. I have created what I believe is a not-terribly-complex Neo database. If you want to cut to the chase, just scroll down to the section called *The Problem* Here is the structure: *Nodes* (:Document) ~75k (:Country) ~300 (:Person) ~8k *Relationships* -[:MENTIONS]- ~300k *System

[Neo4j] Graph in hadoop

2014-11-12 Thread Frans Thamura
Hi all I want to use neo4j graph search in Hadoop or Impala I think both are competing, but feature wise complement Anyone can help me? F -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop receiving emails from

Re: [Neo4j] SQL Server to Neo4j Imports

2014-11-12 Thread Michael Hunger
Did you try to run it with -Dfile.encoding=UTF-8 ? And perhaps an importer in Java/Groovy is more stable for reading the data? See here: http://jexp.de/blog/2014/10/flexible-neo4j-batch-import-with-groovy/ On Wed, Nov 12, 2014 at 5:02 PM, Isaac Vargas ivcafe...@gmail.com wrote: I had asked

Re: [Neo4j] using neo4j with c/cpp

2014-11-12 Thread Michael Hunger
If you have a library for http requests (libcurl?) and json parsing it is pretty simple to get started. See: http://neo4j.com/docs/milestone/rest-api-transactional.html Right now there are afaik only a few attempts with c / c++ One of which is neo4c https://github.com/wfreeman/neo4c On Wed,

Re: [Neo4j] Very Slow Simple Queries (System Details Inside)

2014-11-12 Thread Michael Hunger
Hi Eric, did you do: create index on :Document(source_id); Also your relationships are they bi-directional between the same two nodes? On Wed, Nov 12, 2014 at 11:06 PM, Eric Gade eric.g...@gmail.com wrote: Hello. I have created what I believe is a not-terribly-complex Neo database. If you

Re: [Neo4j] [Idea] Declaring an expected result for write-based Cypher queries

2014-11-12 Thread Michael Hunger
Just make sure to use labels with your property matches :) On Thu, Nov 13, 2014 at 2:50 AM, Michael Hunger michael.hun...@neotechnology.com wrote: You can return count(*) which would be 0 for the case that it didn't match and 1 for the cases it matched. you could even do with count(*)

Re: [Neo4j] [Idea] Declaring an expected result for write-based Cypher queries

2014-11-12 Thread Michael Hunger
You can return count(*) which would be 0 for the case that it didn't match and 1 for the cases it matched. you could even do with count(*) as c return c = 1 as successful Afaik there are no plans for providing expected results (esp, as those can grow gigantic). On Wed, Nov 12, 2014 at 11:27

Re: [Neo4j] Graph in hadoop

2014-11-12 Thread Michael Hunger
Hmm Neo4j graph search uses the Neo4j property graph metadata to do its work and rendering to cypher for the execution. Both of which I don't hink you get (easily) in Hadoop/Impala. What do you actually want to do, perahps you can describe your use-case a bit. Cheers, Michael On Thu, Nov 13,

Re: [Neo4j] Graph in hadoop

2014-11-12 Thread Richard L. Burton III
I don't want to sound like I'm pimping another graph database, but it sounds like you might be talking about Giraph, which is a graph database on top of Hadoop. I've been building an extensive list of different frameworks for engineers at http://techbox.io/ Long term, I'm going to provide

Re: [Neo4j] New Neo4j SPARQL Plugin

2014-11-12 Thread Michael Hunger
Niclas, this is amazing, thanks so much for creating it and also making it available for the open source community. Do you have any information about the model you use to store RDF efficiently and any performance numbers? Esp. comparing it with cypher? That would be really interesting. Do you

Re: [Neo4j] Lucene Configuration for Term Vectors (and other Field. options)

2014-11-12 Thread Michael Hunger
As far as I know this is not exposed. The closest that is there is to pass in a lucene query object into neo4j when querying data (e.g. like sort or topk-documents) You can have a look at the LuceneIndexImplementation.java class For text categorization, Kenny wrote a Neo4j extension called