indexing
Installation
SKILL.md
What I do
- Design efficient indexes
- Choose index types
- Optimize query performance
When to use me
When creating database indexes.
Index Types
B-Tree Index
class BTreeIndex:
"""B-Tree index implementation"""
def __init__(self, order: int = 3):
self.root = BTreeNode(order)
self.order = order