通过查看 Boost 代码,我猜你有:
或者
从 \boost_1_54_0\boost\intrusive\rbtree.hpp
//! <b>Effects</b>: Erases all of the elements.
//!
//! <b>Complexity</b>: Linear to the number of elements on the container.
//! if it's a safe-mode or auto-unlink value_type. Constant time otherwise.
//!
//! <b>Throws</b>: Nothing.
//!
//! <b>Note</b>: Invalidates the iterators (but not the references)
//! to the erased elements. No destructors are called.
void clear()
{
if(safemode_or_autounlink){
this->clear_and_dispose(detail::null_disposer());
}
else{
node_algorithms::init_header(this->priv_header_ptr());
this->priv_size_traits().set_size(0);
}
}
此处的评论清楚地表明,您可以从实施的明确中获得恒定的时间。翻阅 boost 代码,我的阅读是 interprocess::map 最终使用这个 rbtree 作为底层数据结构。我没有注意到设置了安全模式或自动取消链接的任何地方,但我可能会错过它。如果你设置了其中一个,我会先看看我是否可以没有它,如果是这样,你的性能问题有望消失。
如果这是 boost 中的一个错误,您将不得不解决它。我会立即使用标题中的联系信息进行报告:
/////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2006-2012
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/intrusive for documentation.
//
/////////////////////////////////////////////////////////////////////////////
快速的谷歌搜索似乎有 Ion 的联系方式:
http://boost.2283326.n4.nabble.com/template/NamlServlet.jtp?macro=user_nodes&user=161440
或访问 http://www.boost.org/development/bugs.html
然后根据您的性能需求水平实施 Paul R 或 rileyberton 的解决方案。