1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Console\Test;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\Redis;
- class TestCache extends Command
- {
- /**
- * @var string
- */
- protected $signature = 'test:cache';
- /**
- * The console command description.
- * php artisan Payment:BasePayment --bid='1'
- *
- * @var string
- */
- protected $description = '测试缓存';
- /**
- * handle
- */
- public function handle()
- {
- $key = 'FGCOuXrAPi80aWgH';
- Redis::set($key, 'test');
- }
- }
|