Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 434 Bytes

File metadata and controls

27 lines (17 loc) · 434 Bytes

PHP Session Migrator

Script for the migration between PHP session storages.

Examples

Migrate from files to memcache:

php migrator.php --from=files --to=memcache

Migrate from memcache to redis:

php migrator.php --from=memcache --to=redis

Supported session storages

  • Files (default PHP)
  • Memcache
  • Redis

Other options

  • --clean-destination — remove all sessions from the destination storage.