下图为 ab 压测结果 下图为 status 截图 服务器为2H2G 不知道什么原因 失败率较高 有些进程没有请求数 'count' => cpu_count() * 4, 'reusePort' => true,...
class SystemConfig extends BaseModel { // 数据表名称 protected $name = 'system_config'; // 当前模型实例缓存 private static ?SystemConfig $_instance = null; /** * 获取当前模型实例 * @return SystemConfi...
正常PHP-FPM模式下 static可以用做当前请求的全局缓存 如下列代码: class Model { static $cache = null; public function getCache(){ if(self::$cache === null) { ... self::$cache = ...; } ...
namespace app\model; use Illuminate\Redis\Connections\Connection; use think\db\Query; use think\Model; class Config extends Model { // 数据表名称 protected $name = 'config'; /** * 模型查询器 * @r...