Created
December 13, 2012 21:07
-
-
Save douglasjarquin/4279888 to your computer and use it in GitHub Desktop.
Migrate CakePHP sessions from MySQL to Redis.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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