mnesia 表不存在 vs 表未加载

发布于 2024-10-31 13:13:15 字数 127 浏览 1 评论 0原文

如何区分架构中不存在的表和尚未加载的表?

我目前正在使用具有相对较大超时的 mnesia:wait_for_tables() 来检测表,但这是松散的(如果表实际上需要很长时间才能启动会发生什么)并且耗时(如果表确实不存在)。

How can I tell the difference between a table not being present in the schema and a table that has not yet loaded?

I am currently using mnesia:wait_for_tables() with a relatively large timeout to detect a table, but this is loose (what happens if the table actually takes a long time to start) and time consuming (if the table is really not there).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈情不如逗狗 2024-11-07 13:13:15

也许尝试一下......

lists:member(table_name, mnesia:table_info(schema, tables)).

这只是一个猜测,但如果没有其他人有明确的答案,它可能会成为实验的基础。

Maybe try...

lists:member(table_name, mnesia:table_info(schema, tables)).

It's only a guess, but it could be the basis for an experiment if no one else has a definitive answer.

软甜啾 2024-11-07 13:13:15

mnesia:table_info/2 可能会有所帮助。

  1. 如果你事先知道表名,并且想知道哪些节点有数据,

    mnesia:table_info(TableName, StorageType)。
    

    StorageType 应该是其中之一

    ram_copies、disc_copies 或disc_only_copies。
    
  2. ,或者,如果你想知道本地节点有表副本,只需< /p>
    mnesia:table_info(TableName, storage_type)。
    

    如果本地节点没有副本,则返回“未知”。

mnesia:table_info/2 may help.

  1. If you know the table names in advance and you want to know which nodes have data,

    mnesia:table_info(TableName, StorageType).
    

    StorageType should be one of

    ram_copies, disc_copies or disc_only_copies.
    
  2. or, if you want to know the local node has table copy, just

    mnesia:table_info(TableName, storage_type).
    

    If the local node does NOT have a copy, this returns 'unknown'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文