Cypher语句中WHERE语句使用toUpper函数时,函数参数对应的属性未使用索引,怎么解决?
MATCH (n:Post) WHERE toUpper(n.title) contains ‘大学’ RETURN count(n);
其中已在节点:Post上创建了title属性的索引。
使用正则表达式时: match (n:Post) where n.title =~ ‘.大学.’ return count(n);
虽然使用了索引,但性能明显比第一条Cypher语句低。