My recent discovery of memcache has kind of created a craze and opening up everything to new possibilities.
Right now, when I send out a confirmation email when someone has signed up for one of our services, I create "token" in a "tokens" table that has a set expiration (usually 3 days) for them to verify their account.
I then have a daily cron job go through and see if anything is past due, in which case it deletes the token.
Is this something that could be done with memcache? Perhaps a better question -- is this something that should be done with memcache?