質問

ets:insert can be used to update data in an ets set, but how about a bag? Do we have to update by match_delete or select_delete first and then insert?

役に立ちましたか?

解決

The concept of a bag doesn't make sense if updates are going to be required. Given that ets:update_element/3 explicitly doesn't support bags, it seems evident that delete then write is your only option.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top