从ets doc中,保证对单个对象的所有更新都是原子的和孤立的。这意味着对单个对象的更新操作要么成功,要么完全失败,没有任何影响(原子性),并且其他进程看不到更新的中间结果(隔离)。
对于以下代码,我将两个表合二为一
我的问题:
这是 Erlang 中的常见模式吗?
对于插入和更新,它是原子的和孤立的吗?
-模块(example_store)。-导出([初始化/0,插入/1,更新/1])。
init() -> ets:new(store, [public, named_table, {read_concurrency, true}, {write_concurrency, true}]),
数据 = ets:new(store_data, [public, named_table, {read_concurrency, true}, {write_concurrency, true}]),
Info = ets:new(store_info, [public,ordered_set, named_table, {read_concurrency, true}, {write_concurrency, true}]), ets:insert(store, {store, Data, Info}). %% insert data insert({Key, Value, Info}) -> {store, Data_tb, Info_tb} = ets:lookup(store, store), ets:insert(Data_tb, {Key, Value}), ets:insert(Info_tb, {Info, Key}), ok. %% update data update({Key, Value, Info, Info_old}) -> {store, Data_tb, Info_tb} = ets:lookup(store, store), ets:insert(Data_tb, {Key, Value}), ets:delete(Info_tb, {Info_old,Key}), ets:insert(Info_tb, {Info, Key}), ok.
来自@Derek
Brown 的Update_1,被包裹的表不能保证insert/1
和update/1
被隔离。
Q3:可以隔离吗?(除了 Gen_server)