namespace app\model;
use Illuminate\Redis\Connections\Connection;
use think\db\Query;
use think\Model;
class Config extends Model
{
// 数据表名称
protected $name = 'config';
/**
* 模型查询器
* @return Config|Query
*/
public static function querier(): Config|Query
{
return self::where('is_deleted=0');
}
}
这段代码如果控制器中调用Config::querier()->where([查询条件])->... 在高并发下是否会互相影响
不会
好的 我对于常驻内存不是太了解 谢谢