Skip to content

Instantly share code, notes, and snippets.

View lipfreitas's full-sized avatar

Felipe Freitas lipfreitas

View GitHub Profile
@lipfreitas
lipfreitas / Cache.php
Last active January 28, 2021 16:03
CrossKnowledge - Technical challenge (PHP)
<?php
class Cache
{
const redisServer = 'localhost';
const redisServerPort = 0101;
private $redis;
public function __construct(){
$this->redis = new Redis();
$this->redis->connect(self::redisServer, self::redisServerPort);