You are here

class Redis_Path_NullHashLookup in Redis 7.2

Same name and namespace in other branches
  1. 7.3 lib/Redis/Path/NullHashLookup.php \Redis_Path_NullHashLookup

Null implementation.

Hierarchy

Expanded class hierarchy of Redis_Path_NullHashLookup

File

lib/Redis/Path/NullHashLookup.php, line 6

View source
class Redis_Path_NullHashLookup implements Redis_Path_HashLookupInterface {
  public function saveAlias($source, $alias, $language = null) {
  }
  public function deleteAlias($source, $alias, $language = null) {
  }
  public function deleteLanguage($language) {
  }
  public function lookupAlias($source, $language = null) {
  }
  public function lookupSource($alias, $language = null) {
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Redis_Path_HashLookupInterface::KEY_ALIAS constant Alias HASH key prefix
Redis_Path_HashLookupInterface::KEY_SOURCE constant Source HASH key prefix
Redis_Path_HashLookupInterface::VALUE_NULL constant Null value (not existing yet cached value)
Redis_Path_HashLookupInterface::VALUE_SEPARATOR constant Values separator for hash values
Redis_Path_NullHashLookup::deleteAlias public function Alias is being deleted for the given source Overrides Redis_Path_HashLookupInterface::deleteAlias
Redis_Path_NullHashLookup::deleteLanguage public function A language is being deleted Overrides Redis_Path_HashLookupInterface::deleteLanguage
Redis_Path_NullHashLookup::lookupAlias public function Lookup any alias for the given source Overrides Redis_Path_HashLookupInterface::lookupAlias
Redis_Path_NullHashLookup::lookupSource public function Lookup any source for the given alias Overrides Redis_Path_HashLookupInterface::lookupSource
Redis_Path_NullHashLookup::saveAlias public function Alias is being inserted with the given source Overrides Redis_Path_HashLookupInterface::saveAlias