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

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
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

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)