testCache.php 423 B

123456789101112131415161718192021
  1. <?php
  2. use Fastknife\Domain\Logic\Cache;
  3. include '../src/Domain/Logic/Cache.php';
  4. include '../src/Utils/CacheUtils.php';
  5. $config = include '../src/config.php';
  6. $cacheEntity = new Cache($config['cache']);
  7. var_dump($cacheEntity->get('haha'));
  8. $cacheEntity->set('haha', 1, 60);
  9. var_dump($cacheEntity->has('haha'));
  10. var_dump($cacheEntity->get('haha'));
  11. $cacheEntity->delete('haha');
  12. var_dump($cacheEntity->get('haha'));