修改微信access_token

This commit is contained in:
2023-05-16 17:10:02 +08:00
parent c3ce0af2db
commit bcde789d7f
5 changed files with 38 additions and 3 deletions
+9
View File
@@ -9,10 +9,19 @@ declare(strict_types=1);
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
use App\Driver\ProdRedisDriver;
use App\Factory\ProdRedisFactory;
return [
'default' => [
'driver' => Hyperf\Cache\Driver\RedisDriver::class,
'packer' => Hyperf\Utils\Packer\PhpSerializerPacker::class,
'prefix' => 'c:',
],
'prod' => [
'driver' => ProdRedisDriver::class,
'packer' => Hyperf\Utils\Packer\PhpSerializerPacker::class,
'prefix' => 'c:',
],
];