Commit d70d056e authored by 何伟's avatar 何伟 Committed by GitHub

Update README.md

parent 84dcfc69
......@@ -983,7 +983,7 @@ Mybatis Generator是原生支持自定义注释的(commentGenerator配置type
]]></comment>
</template>
```
### 13. 增量插件
### 14. 增量插件
为更新操作生成set filedxxx = filedxxx +/- inc 操作,方便某些统计字段的更新操作,常用于某些需要计数的场景;
插件:
......@@ -1015,7 +1015,7 @@ public class Test {
}
}
```
### 13. 查询结果选择性返回插件
### 15. 查询结果选择性返回插件
一般我们在做查询优化的时候会要求查询返回时不要返回自己不需要的字段数据,因为Sending data所花费的时间和加大内存的占用
,所以我们看到官方对于大数据的字段会拆分成xxxWithBLOBs的操作,但是这种拆分还是不能精确到具体列返回。
所以该插件的作用就是精确指定查询操作所需要返回的字段信息,实现查询的精确返回。
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment