Skip to content

v0.2.2

Choose a tag to compare

@github-actions github-actions released this 05 Mar 05:07
· 9 commits to main since this release

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 keys table
    INSERT INTO keys (key, value, ttl) VALUES ('session:1', 'active', 3600)
    This translates to Redis command: 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