Skip to content

Instantly share code, notes, and snippets.

@voluntas
Created August 10, 2010 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save voluntas/516443 to your computer and use it in GitHub Desktop.
Save voluntas/516443 to your computer and use it in GitHub Desktop.
%% A
F = fun() ->
mnesia:table_info(store, size)
end,
Result = mnesia:activity(async_dirty, F, [], mnesia_frag).
%% B
Result = mnesia:activity(async_dirty,
fun() ->
mnesia:table_info(store, size)
end,
[],
mnesia_frag).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment