标签:log 规则 str http containe 分库分表 名称 number art
partition($data, $field, $rule); // $data 分表字段的数据 // $field 分表字段的名称 // $rule 分表规则
// 用于写入 $data = [ ‘user_id‘ => 110, ‘user_name‘ => ‘think‘ ]; $rule = [ ‘type‘ => ‘mod‘, // 分表方式 ‘num‘ => 10 // 分表数量 ]; Db::name(‘log‘) ->partition([‘user_id‘ => 110], "user_id", $rule) ->insert($data); // 用于查询 Db::name(‘log‘) ->partition([‘user_id‘ => 110], "user_id", $rule) ->where([‘user_id‘ => 110]) ->select();
标签:log 规则 str http containe 分库分表 名称 number art
原文地址:https://www.cnblogs.com/corvus/p/12868369.html