clear() 공개 메소드

Clears the cache for a given cacheKey, for a given commandKey
public clear ( string $commandKey, string $cacheKey )
$commandKey string
$cacheKey string
예제 #1
0
 public function testClear()
 {
     $result = (object) array('a' => 123);
     $this->requestCache->put('TestCommand', 'cache-key-123', $result);
     $this->assertEquals($result, $this->requestCache->get('TestCommand', 'cache-key-123'));
     $this->requestCache->clear('TestCommand', 'cache-key-123');
     $this->assertNull($this->requestCache->get('TestCommand', 'cache-key-123'));
 }