mysql 限制查询数量

发布于 2024-10-11 07:48:27 字数 172 浏览 2 评论 0原文

你好 我使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金兰素衣 2024-10-18 07:48:27

您是否有可能正在使用连接池但无法关闭连接(因此没有将它们返回到池中)?

检查是否关闭了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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文