Re: [Neo4j] Geospatial and full text search with cypher

2016-02-27 Thread Michael Hunger
Hey, if you're new to Neo4j I recommend to check out the latest 3.0.0-M04 milestone which allows you to do both (in moderation). CREATE INDEX ON :Location(name); foreach (x in range(1,1000) | create (:Location {name:"foo"+x,latitude:52.0+1000.0/x,longitude:11.0+1000.0/x})); MATCH (x:Location)

Re: [Neo4j] Geospatial and full text search with cypher

2016-02-27 Thread Clark Richey
Does this mean that the spatial project is being merged into the core in 3? Sent from my iPhone > On Feb 27, 2016, at 20:08, Michael Hunger > wrote: > > Hey, > > if you're new to Neo4j I recommend to check out the latest 3.0.0-M04 > milestone which allows

[Neo4j] Clearing nodes

2016-02-27 Thread Ara
Hi , Recently installed Neo4j community version, I'am not able to clear the node labels, relationship type from database information. Kindly guide me on this issue.Thank you -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this

Re: [Neo4j] Import Data From Oracle to Neo4J

2016-02-27 Thread Maryam Gerami
Hi I have a medium size dataset with 100,000 rows and I use this command for importing data from csv file to graph database LOAD CSV WITH HEADERS FROM "file:///E:/datasets/Actors_data_all.csv" AS row MERGE (c:Country {Name:row.Country}) MERGE (a:Actor {Name: row.ActorName, Aliases: row.Aliases,

Re: [Neo4j] Geospatial and full text search with cypher

2016-02-27 Thread Michael Hunger
No this is separate work (or the beginnings of it). The full fledged, newly implemented spatial support including indexes won't make it into 3.0 but it will hopefully come not too much later. Cheers, Michael On Sun, Feb 28, 2016 at 2:30 AM, Clark Richey wrote: > Does

Re: [Neo4j] Geospatial and full text search with cypher

2016-02-27 Thread Clark Richey
Great news. Thanks! Sent from my iPhone > On Feb 27, 2016, at 20:54, Michael Hunger > wrote: > > No this is separate work (or the beginnings of it). The full fledged, newly > implemented spatial support including indexes won't make it into 3.0 but it > will

[Neo4j] Neo4j + Spark example

2016-02-27 Thread Sukaant Chaudhary
Hi, Can anyone suggest some example for Neo4j + Spark, preferably with Java or suggest the better language than Java for this implementation. Also suggest in which scenario this combination will perform better. -Sukaant Chaudhary -- You