Skip to content

Instantly share code, notes, and snippets.

2014 年10月04日
4D530901 Game Room电动间
584E07D2 Kodu Game Lab kodu游戏实验室PUZ(益智类)
58410A0F Days Of Thunder Arcade雷霆壮志RAC(竞速类)
58410A1B ilomilo(TU.DLC)找寻记AVG(解密类)
58410A1D Hole in the Wall 穿越墙洞 K.Sport(体感休闲类)
58410A1F NEOGEO BATTLE COLISEUM NeoGeo 拳皇大乱斗FTG(格斗类)
58410A02 Rocket Knight 火箭骑士(动作类)
58410A2C Scott Pilgrim vs The World The Game 歪小子斯科特ACT(动作类)
Batman.Arkham.City.GOTY.Disc1
Bayonetta.GOD
BioShock.GOTY.GOD
COD.BO2.dll.IronWolfV2.TU18
COD.BO2.GSC.Jiggy.4.5.TU18
COD.BO3.xex.CP1.TU1.Integrated
COD.Ghosts.Disc1
COD.MW2.TU8.BlueSky31.RS-DpadLeft
COD.MW2.TU8.Spyder.DpadLeft
COD.MW3.AskTU23.MrGoLynx.Unsigned
class RedisSessionStore(SessionStore):
def __init__(self, expire = 1800, key_prefix=''):
SessionStore.__init__(self)
self.redis = redis.Redis(tools.config.get('redis_host', 'localhost'),
int(tools.config.get('redis_port', 6379)),
int(tools.config.get('redis_dbindex', 1)),
password=tools.config.get('redis_pass', None))
self.path = session_path()
self.expire = expire
self.key_prefix = key_prefix