testingSecRule中的ARG参数的长度 – Mod Security

使用Mod Security来限制http请求参数长度的最有效的方法是什么? 例如,要限制WordPress评论长度:

SecRule ARGS:comment "^.{65530}" 

这个正则expression式扩展是否会使mod安全性显着下降?

或者这会是最快的?

 SecRule ARGS:comment "@gt 65530" "t:none,t:length"