If I invoke this module from within Drupal (i.e. not using PHPMyAdmin and having no sessions) the sessions table will have at least one session (and maybe user ones). When a restore is done the session table is likely to have those old sessions recreated. This may mean the session table can grow with junk in it!

Is there a mechanism which (eventually maybe) removes these old sessions or do they stick forever?

Correct me if my hinking is astray here.

Any other convolutions with this situation?

Comments

ronan’s picture

As far as I know, as long as your php environment is set to garbage collect sessions old sessions will be deleted in time. You can also exclude the contents of the sessions table using Backup and Migrate so that old sessions will not be present after a restore.

------------------------------------
Ronan
Founder - NodeSquirrel - https://www.nodesquirrel.com/
Agency Tools Lead - Pantheon - https://www.pantheon.io/

cantthinkofanickname’s picture

Thanks I will experiment.