Skip to content

Instantly share code, notes, and snippets.

@douglasjarquin
Created December 13, 2012 21:07
Show Gist options
  • Save douglasjarquin/4279888 to your computer and use it in GitHub Desktop.
Save douglasjarquin/4279888 to your computer and use it in GitHub Desktop.
Migrate CakePHP sessions from MySQL to Redis.
require 'rubygems'
require 'mysql'
require 'redis'
# start your engines
mysql = Mysql.new('host', 'username', 'password', 'database')
redis = Redis.new('host' => '', 'port' => , 'password' => '')
sessions = mysql.query("select * from cake_sessions where expires > '#{Time.now.to_i - 10800}' LIMIT 10")
sessions.each_hash do |session|
# test the string
# puts "SETEX \"PHPREDIS_SESSION:#{session['id']}\", 10800, #{session['data']}"
# load each session into Redis
redis.setex("PHPREDIS_SESSION:#{session['id']}", 10800, session['data'])
end
mysql.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment