예제 #1
0
파일: PredisTest.php 프로젝트: gmo/cache
 /**
  * @group redis-strings
  */
 public function testAppend()
 {
     $this->assertSame(5, $this->client->append('foo', 'Hello'));
     $this->assertSame(11, $this->client->append('foo', ' World'));
     $this->assertSame('Hello World', $this->client->get('foo'));
 }