PhpRedisShardedFlushUnitTestCase.test 524 B

1234567891011121314151617181920
  1. <?php
  2. class Redis_Tests_Cache_PhpRedisShardedFlushUnitTestCase extends Redis_Tests_Cache_FlushUnitTestCase
  3. {
  4. public static function getInfo()
  5. {
  6. return array(
  7. 'name' => 'PhpRedis cache flush (S)',
  8. 'description' => 'Tests Redis module cache flush modes feature.',
  9. 'group' => 'Redis',
  10. );
  11. }
  12. protected function getClientInterface()
  13. {
  14. $GLOBALS['conf']['redis_flush_mode'] = Redis_Cache::FLUSH_SHARD;
  15. return 'PhpRedis';
  16. }
  17. }