假设我有一个boost :: multi_index_container并想访问它的索引
boost::multi_index_container< ... > bmi;
// lock here?
auto &index = boost::multi_index::get<0>(bmi); // <-- does this call need to be protected by a lock?
// or is it sufficient to lock here?
// access the index (need to have the lock here)
当多个进程/线程访问multi_indesx_container时,我需要使用互斥锁(或类似的东西)。但是我也需要保护获取索引本身吗? 我猜不是,但是在文档中找不到保证。