View Source mnesia_registry (mnesia v4.23.1)

This module is deprecated and the functions should not be used.

This module was intended for internal use within OTP by the erl_interface application, but it has two functions that are exported for public use.

Since the erl_interface have removed the registry functionality a long time ago, these functions are deprecated.

See Also

mnesia

Summary

Functions

create_table(Tab) deprecated

Warning

This function is deprecated. Do not use it.

Warning

This function is deprecated. Do not use it.

Functions

This function is deprecated. mnesia_registry:create_table/1 is deprecated; use mnesia:create_table/2 instead.
-spec create_table(Tab :: atom()) -> ok.

Warning

This function is deprecated. Do not use it.

A wrapper function for mnesia:create_table/2, which creates a table (if there is no existing table) with an appropriate set of attributes. The table only resides on the local node and its storage type is the same as the schema table on the local node, that is, {ram_copies,[node()]} or {disc_copies,[node()]}.

This function is used by erl_interface to create the Mnesia table if it does not already exist.

This function is deprecated. mnesia_registry:create_table/2 is deprecated; use mnesia:create_table/2 instead.
-spec create_table(Tab :: atom(), Opt :: [{atom(), term()}]) -> ok.

Warning

This function is deprecated. Do not use it.

A wrapper function for mnesia:create_table/2, which creates a table (if there is no existing table) with an appropriate set of attributes. The attributes and TabDef are forwarded to mnesia:create_table/2. For example, if the table is to reside as disc_only_copies on all nodes, a call looks as follows:

          TabDef = [{{disc_only_copies, node()|nodes()]}],
          mnesia_registry:create_table(my_reg, TabDef)