원클릭으로
apply-falkordb-index-aware-predicates
Write predicates that let FalkorDB use indexes and avoid full scans in read queries
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Write predicates that let FalkorDB use indexes and avoid full scans in read queries
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use algo.SPpaths/algo.SSpaths procedures and variable-length patterns to find paths in read queries
Search text properties with the db.idx.fulltext.queryNodes procedure when a full-text index exists
Prefix read queries with CYPHER parameters for plan caching and safer value handling
Find nearest-neighbor nodes with the db.idx.vector.queryNodes procedure when a vector index exists
| name | Apply FalkorDB index-aware predicates |
| description | Write predicates that let FalkorDB use indexes and avoid full scans in read queries |
Design WHERE predicates so FalkorDB can use indexes instead of scanning every node.
Apply equality or range predicates directly to indexed properties. Avoid not-equal filters and avoid wrapping the indexed property in a function.
MATCH (p:Person)
WHERE p.age >= 30 AND p.age < 40
RETURN p.name, p.age
<> / !=) predicates are not index-accelerated and force a full scan; use them only when
exclusion is explicitly required.=) and range (<, <=, >, >=) predicates on indexed properties can use an index scan.toLower(p.name) = 'alice') prevents index use; keep
the indexed property bare on one side of the predicate when an index exists.