v0.2.2
v0.2.2 (2026-03-05)
🎯 Overview
This release adds support for setting TTL (Time-To-Live) values when inserting string keys, enabling automatic key expiration.
✨ New Features
- TTL Support in INSERT Statements: You can now set TTL when inserting keys into the
keystableThis translates to Redis command:INSERT INTO keys (key, value, ttl) VALUES ('session:1', 'active', 3600)
SET session:1 "active" EX 3600
📚 Documentation
- Updated README with TTL examples in INSERT operations section
- Added TTL column documentation in virtual tables section
🔨 Internal Changes
- Enhanced INSERT handler to support optional TTL parameter
- Added TTL validation and Redis SETEX command integration