Got it working fairly well, just trying to get all of my assumption / opinions baked in. Still need to come up with a decent way to generate session hashes to help avoid session collision . Incidentally Retwis seems to be susceptible to this.
15 lines
176 B
PHP
15 lines
176 B
PHP
<?php
|
|
|
|
class CustomModule extends Module
|
|
{
|
|
protected $redis = false;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->redis = new CustomRedis();
|
|
}
|
|
}
|
|
|
|
?>
|