|
用户提交数据的时候发的请求中传了用户的id,使用自动关联时用到了函数web_reg_save_param,
为了增加参数的大小,使用了web_set_max_html_param_len to("1024000")
,测试到1000人的时候未出现异常。
测试的场景是2000人同时在线进行提交数据的操作。出现1个人提交失败,报错是:Action.c(56): Error -26377: No match found for the requested parameter "WCSParam_Diff1". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 1024000 bytes, use web_set_max_html_param_len to increase the parameter size
修改web_set_max_html_param_len to("1024000")
为web_set_max_html_param_len to("2048000"),依然报错。
有没有人能告诉我该如何解决?
还有能不能详细的解释一下web_set_max_html_param_len to()函数中参数值是根据什么来设置的,谢谢! |
|