Is it possible, to create a record in MySQL database, that would subject to TTL (Time to live) option.
I want to make a simple password recovery feature and I need to store an activation key, that would be stored in database for only 3600 seconds and then be deleted automatically after that time? I know there are bunch of other ways to achieve this but they are not as straight forward as an idea of TTL functionality.
I guess that MySQL doesn't have such functionality but I just thought that maybe I'm missing something and there is?