cacheValue() публичный Метод

public cacheValue ( string $key, $value )
$key string
Пример #1
0
 public function testCanSetAnRetrieveAValueFromTheCache()
 {
     $context = new GenerationContext();
     $context->cacheValue('foo', $foo = new \stdClass());
     $this->assertSame($foo, $context->getCachedValue('foo'));
 }
 /**
  * Gets all the fixture IDs suitable for the given value.
  *
  * @param FixtureMatchReferenceValue $value
  * @param ResolvedFixtureSet         $fixtureSet
  * @param GenerationContext          $context
  *
  * @return string[]
  */
 private function getSuitableIds(FixtureMatchReferenceValue $value, ResolvedFixtureSet $fixtureSet, GenerationContext $context) : array
 {
     $pattern = $value->getValue();
     try {
         $cache = $context->getCachedValue(self::IDS_BY_PATTERN_CACHE_KEY);
     } catch (CachedValueNotFound $exception) {
         $cache = [];
     }
     if (array_key_exists($pattern, $cache)) {
         return $cache[$pattern];
     }
     $suitableIds = $this->findSuitableIds($pattern, $fixtureSet);
     $cache[$pattern] = $suitableIds;
     $context->cacheValue(self::IDS_BY_PATTERN_CACHE_KEY, $cache);
     return $suitableIds;
 }