See my blog post http://jexp.de/blog/2014/03/full-text-indexing-fts-in-neo4j-2-0/
Sent from mobile device Am 26.04.2014 um 11:27 schrieb Krishna Shetty <[email protected]>: > 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: > 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. -- 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.
