Hello there,
I just noticed a kinda weird thing: if users log in with the 'Remember Me' option enabled, their records in the db get updated everytime the user reloads a page, because apparently restful_authentication's code updates the remember_token_expires_at & remember_token attributes for each page load (not only once on the actual login (from cookie).
Wouldn't it make much more sense to set this remember_token_expires_at and the corresponding token once only and that's it? Or am I missing something?
Just wanna make sure the db doesn't get hit (writing-wise) over and over again during a users' browsing session on the site.
-J