0

I am doing suggestions from Neo4j database with cypher query, through a php library. My concern is that it gives suggestion slowly. I noticed that if i use lucene query in index lookup the query runs faster, but i did not find any method that does incasesensitive search. The query would look something like this:

START n = node:Destination('name:*term*')
...

but this is case sensitive. So if the value stored in db is for example "Term" i wont get any results. Is there any way that i can do case insensitive search?

4

0 回答 0