We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduction
当属性不存在时match语句选择一个索引全表扫描,数据量特别大时返回结果很慢 match (v:player) where v.player.name1=="Tim Duncan" return v(name1不存在)
Contents
尽量避免这种情况的全表扫描,可以立刻反回结果 Related work
The text was updated successfully, but these errors were encountered:
Shylock-Hg
Successfully merging a pull request may close this issue.
Introduction
当属性不存在时match语句选择一个索引全表扫描,数据量特别大时返回结果很慢

match (v:player) where v.player.name1=="Tim Duncan" return v(name1不存在)
Contents
尽量避免这种情况的全表扫描,可以立刻反回结果
Related work
The text was updated successfully, but these errors were encountered: