# Overview
An alternative to a predicate lock, where the locking is done based on a range on the index. The result is you may lock more rows than needed, but the process takes quicker since it only leverage data available in the index.
# Key Considerations
# Pros
- Faster performance for grabbing locks
# Cons
- Locks more rows than needed, which may increase [[deadlocks]]
# Use Cases
# Related Topics