I am working search feature. I need to return all nodes with matching 
string in 'name' property. 

I am using the query as suggested 
here<http://stackoverflow.com/questions/13828953/like-clause-in-cypher-query>
:
*match <mypattern> where n.name =~ '.*SUBSTRING.*' return n.Name;*

I have also added index on name property.
*CREATE INDEX ON :MyLabel1(name);*

But the query is not *fast.*

I have read about full text case insensitive indexing, please suggest how 
to do this through cypher query.
Or is there any other way to improve search speed.

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.

Reply via email to