Files
yusheng-php/application/extra/redis.php

12 lines
233 B
PHP
Raw Normal View History

2025-10-20 10:02:41 +08:00
<?php
return [
'host' => '127.0.0.1',
'port' => 6379,
'password' => '',
'select' => 0,
'timeout' => 0,
'expire' => 0,
2026-01-13 19:37:26 +08:00
'persistent' => true,
2025-10-20 10:02:41 +08:00
'prefix' => 'fa_redpacket_',
];