Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,100 个相同的查询SELECT * FROM tableA WHERE columnA LIKE '%STH%'同时发送到 MySQL,MySQL 将同时执行这 100 个相同的查询。
SELECT * FROM tableA WHERE columnA LIKE '%STH%'
是否有一些中间件或插件,可以容纳所有这 100 个查询并且只向 MySQL 发送一个查询,等待结果并将结果发送给所有客户端?
内存缓存不是选项。如果查询没有在 Memcache 中命中,MySQL 有可能会执行所有 100 个相同的查询。