detain/rate-limit

View on GitHub
src/Adapter/Predis.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Detain\RateLimit\Adapter;

/**
 * Predis adapter
 */
class Predis extends \Detain\RateLimit\Adapter
{
    /**
     * @var \Predis\ClientInterface
     */
    protected $redis;

    public function __construct(\Predis\ClientInterface $client)
    {
        $this->redis = $client;
    }


    /**
     * @param string $key
     * @param float|mixed $value
     * @param int $ttl
     * @return bool
     */
    public function set($key, $value, $ttl)
    {
        return $this->redis->set($key, (string) $value, "ex", $ttl);
    }

    /**
     * @return float|mixed
     * @param string $key
     */
    public function get($key)
    {
        return (float) $this->redis->get($key);
    }

    public function exists($key)
    {
        return (bool) $this->redis->exists($key);
    }

    public function del($key)
    {
        return (bool) $this->redis->del([$key]);
    }
}