# Create range indexes for exact/range lookups

> Create indexes to accelerate equality and range predicates on node properties in FalkorDB

- Skill: `falkordb/create-range-indexes-for-exact-range-lookups` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/create-range-indexes-for-exact-range-lookups`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/create-range-indexes-for-exact-range-lookups/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: falkordb (https://skillmd.com/u/falkordb)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/falkordb/create-range-indexes-for-exact-range-lookups

---


# Create range indexes for exact/range lookups

Create indexes to accelerate equality and range predicates on node properties.

## Usage

Use `CREATE INDEX FOR` to create an index on a node label and property combination.

## Example

```bash
redis-cli GRAPH.QUERY social "CREATE INDEX FOR (p:Person) ON (p.age)"
```

## Notes

- Range indexes speed up both exact matches and range queries
- Indexes improve performance for `WHERE` clauses with equality or range predicates
- Index creation is synchronous and may take time for large datasets
- Multiple indexes can be created on different properties
- Indexes consume additional memory but significantly improve query performance

