mysql 限制查询数量
你好 我使用java库(jwpl)来连接mysql数据库。 我可以就某个术语提出的询问数量是有限的。 例如,query="select * from table where keywords= term" 可能会被询问大约 20 次,之后就根本不起作用了。 我应该怎么办? 我应该改变mysql的缓存参数吗?又如何呢? 提前致谢
hi
I use a java library(jwpl) to connect a database of mysql.
number of queries that I can be asked on a certain term is limited.
for example query="select * from table where keyword= term" can be asked for about 20 times and after that it doesn't work at all.
what should I do?
should I change cache parameters of mysql? and how?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否有可能正在使用连接池但无法关闭连接(因此没有将它们返回到池中)?
检查是否关闭了finally 块中的所有内容。
Is it possible that you're using a connection pool but failing to close the connections (and thus not returning them to the pool)?
Check that you're closing everything in finally blocks.