我是否需要通过锁来保护对Boost MultiIndex的索引(索引本身)的访问?

时间:2018-12-30 23:32:51

标签: c++ boost locking multi-index

假设我有一个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时,我需要使用互斥锁(或类似的东西)。但是我也需要保护获取索引本身吗? 我猜不是,但是在文档中找不到保证。

1 个答案:

答案 0 :(得分:1)

尽管没有在任何地方进行记录,但是get()static cast operation,本质上是线程安全的。