
In order to migrate IDP from LV 4.x to latest LV version, following task were performed: * Updated namespace to be complain with PSR-4 * General Refactoring: moved all DB access code from services to repositories. * Migration to LV 5.X: these migration guides were applied - https://laravel.com/docs/5.3/upgrade#upgrade-5.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.1.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.2.0 * Improved caching: added repositories decorators in order to add REDIS cache to queries, entities Change-Id: I8edf9f5fce6585129701c88bb88332f242307534
95 lines
1.9 KiB
PHP
95 lines
1.9 KiB
PHP
<?php namespace Utils\Services;
|
|
|
|
/**
|
|
* Interface ICacheService
|
|
* @package Utils\Services
|
|
*/
|
|
interface ICacheService {
|
|
|
|
/**
|
|
* Determine if a key exists
|
|
* @param $key
|
|
* @return bool
|
|
*/
|
|
public function exists($key);
|
|
|
|
/**
|
|
* Delete a key
|
|
* @param $key
|
|
* @return mixed
|
|
*/
|
|
public function delete($key);
|
|
|
|
/**
|
|
* Delete a key
|
|
* @param array $keys
|
|
* @return mixed
|
|
*/
|
|
public function deleteArray(array $keys);
|
|
|
|
/**
|
|
* retrieves a hash
|
|
* @param $name
|
|
* @param array $values
|
|
* @return array
|
|
*/
|
|
public function getHash($name,array $values);
|
|
|
|
/**
|
|
* save a hash, with an optional time to live
|
|
* @param $name
|
|
* @param array $values
|
|
* @param int $ttl
|
|
* @return mixed
|
|
*/
|
|
public function storeHash($name,array $values, $ttl=0);
|
|
|
|
/**
|
|
* @param $counter_name
|
|
* @param int $ttl
|
|
* @return mixed
|
|
*/
|
|
public function incCounter($counter_name, $ttl=0);
|
|
|
|
/**
|
|
* @param $counter_name
|
|
* @return mixed
|
|
*/
|
|
public function incCounterIfExists($counter_name);
|
|
|
|
public function addMemberSet($set_name,$member);
|
|
|
|
public function deleteMemberSet($set_name,$member);
|
|
|
|
public function getSet($set_name);
|
|
|
|
public function getSingleValue($key);
|
|
|
|
public function setSingleValue($key, $value, $ttl=0);
|
|
|
|
/**
|
|
* adds a single value if given keys does not exists, with an optional
|
|
* time to live
|
|
* @param $key
|
|
* @param $value
|
|
* @param int $ttl
|
|
* @return mixed
|
|
*/
|
|
public function addSingleValue($key, $value, $ttl = 0);
|
|
|
|
/**
|
|
* Set time to live to a given key
|
|
* @param $key
|
|
* @param $ttl
|
|
* @return mixed
|
|
*/
|
|
public function setKeyExpiration($key, $ttl);
|
|
|
|
public function boot();
|
|
|
|
/**Returns the remaining time to live of a key that has a timeout.
|
|
* @param string $key
|
|
* @return int
|
|
*/
|
|
public function ttl($key);
|
|
}
|