forked from colinmollenhour/php-redis-session-abstract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
migrateSessions_mysql_redis.php
61 lines (55 loc) · 2.01 KB
/
migrateSessions_mysql_redis.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
//version 0.0.1
$mageFilename = '../app/Mage.php';
require_once $mageFilename;
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
umask(0);
Mage::app();
define('PREFIX', 'PHPREDIS_SESSION:');
/**
* Set up the redis client
*/
$_redis;
$_redis = new Credis_Client('localhost', 6379, 90, True);
$_redis->select(0) || Zend_Cache::throwException('The redis database could not be selected.');
/**
* Get the resource model
*/
$resource = Mage::getSingleton('core/resource');
/**
* Retrieve the read connection
*/
$readConnection = $resource->getConnection('core_read');
// 1. query to order by session_expires, limit N, save last expire time, and session_id
// 2. modify query with where session_expires >= last expire time, and session_id != session_id
$exptime = 0;
$lastid = 'NONE';
$batchlimit = 100;
do {
//$query = 'SELECT session_id, session_expires, session_data FROM ' . $resource->getTableName('core/session').
// ' WHERE session_expires >= ? AND session_id != ? ORDER BY session_expires ASC LIMIT '.$batchlimit;
//$results = $readConnection->fetchAll($query, array($exptime, $lastid));
$query = $readConnection->select()
->from(array('cs'=>$resource->getTableName('core/session')),
array('session_id', 'session_expires', 'session_data'))
->having("session_expires > ?", $exptime)
->having("session_id != ?", $lastid)
->limit($batchlimit)
->order('session_expires');
$results = $readConnection->fetchAll($query);
//var_dump($results);
foreach($results as $row) {
$lastid = $row['session_id'];
$exptime = $row['session_expires'];
$sesskey = PREFIX.$lastid;
$_redis->set($sesskey, $row['session_data']);
$_redis->expireat($sesskey, $exptime);
echo $lastid . " " . $exptime . "\n";
}
echo "----------------------------------\n";
} while( !empty($results) );
/*
Zend_Debug::dump($_SESSION);
*/
?>