英文:
MySQL caching with GO
问题
我有一个运行查询的Go应用程序,其中包含许多连接(使用传统数据库)。
这正在拖慢我的应用程序速度。是否有任何缓存库可以帮助加快响应时间?
我已经进行了一些搜索,但似乎找不到合适的东西。
英文:
I have a Go app which runs queries with lots of joins (using a legacy DB).
Its killing the speed of my app. Is there any caching libraries out there that might help speed up the response times?
I've done a bit of searching but can't seem to find anything that fits.
答案1
得分: 2
显然,存在这个由golang团队直接开发的优秀缓存库:groupcache
英文:
Apparently exists this well done caching library developed directly by the golang team: groupcache
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论