> Am 06.02.2015 um 09:18 schrieb Aris Alexis <[email protected]>:
> 
> hi, i am trying to evaluate my use case for neo4j (since titan just died) 
> 
> can i perform a query that uses spatial *and* a lucene query in one go? can 
> this be done through blueprints?

In cypher or the Neo4j API it's no problem.

Here is a the Cypher example:

START event=node:<lucene-index>("lucene-query"), 
venue=node:<spatial-index>("withinDistance(…)") 
MATCH (event)-[:IN]->(venue) 
RETURN event, venue

> can i do everything that i could do with cypher using blueprints or is it 
> missing some features?

I think blueprints can execute cypher but also access Neo4j manual indexes.

Good question, the things you can't do in Cypher:

* write to manual indexes (lucene, spatial) -> you'll have to do that manually 
or with some kind of auto-index
* iterative algorithms
* some of the graph-algos are not available

Please ask if you want to know more.

Michael

> 
> thanks
> 
> 
> -- 
> 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 [email protected].
> For more options, visit https://groups.google.com/d/optout.

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to