15 lines
243 B
PHP
15 lines
243 B
PHP
<?php
|
|
|
|
namespace App\Cache\Redis\Common;
|
|
|
|
class CommonRedisKey
|
|
{
|
|
/**
|
|
* @var $type
|
|
* @return string
|
|
*/
|
|
public static function getSystemRegionList($type = 'all')
|
|
{
|
|
return '__system:address:list:'.$type;
|
|
}
|
|
} |