标签: performance pool tcmalloc
在我的项目中,我使用内存池(boost :: pool),但它吃了太多的内存(测量了22G),所以我想用tcmalloc / jemalloc替换内存池,我考虑下面的各个方面:
1.performance 2.memory use
我认为如果我使用tcmalloc / jemalloc替换池,那么使用的内存会更小,但性能问题会提高。我该怎么解决?谢谢!