public function MemcachedCacheTest::testLongLifetime in Plug 7
File
- lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ MemcachedCacheTest.php, line 43
Class
Namespace
Doctrine\Tests\Common\CacheCode
public function testLongLifetime() {
$cache = $this
->_getCacheDriver();
$cache
->save('key', 'value', 30 * 24 * 3600 + 1);
$this
->assertTrue($cache
->contains('key'), 'Memcache provider should support TTL > 30 days');
}