I tried this code snippet: print_next(Current) -> case mnesia:dirty_next(muppet, Current) of \'$end_of_table\' ->
Following the solutions to the question i asked recently about mnesia fragmentation, I still have a number of challenges. Consider the following scenario (The question I am asking is based on what fol
I want to create the following schema in Mnesia. Have three tables, called t1, t2 and t3, each of them storing elements of the following record:
Currently I\'m developing a game server, my architecture is that each game server will instance an mnesia db when it\'s first started.
i am writing records into mnesia which should be kept there only for an allowed time (24 hours). after 24 hours, before a user modifies part of them,
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update th开发者_如何转开发e question so it's on-topic for Stack Overflow.
i have the following code: J = fun()->mnesia:clear_table(names) end. mnesia:activity(transaction, J, [], mnesia_frag).
I\'ve seen in a lot of documents that Mnesia has been open sourced by Ericsson, but straightforward go开发者_如何学JAVAogling didn\'t help me to find the repository with the code...
I have a mnesia table users with user and password field. Data from my table:开发者_开发技巧 [{users, <<\"user_name\">>, <<\"password\">>}].
I have some data stored as binaries in mnesia,开发者_运维知识库 how can I view the data (e.g. as <<\"data_content\">>) in tv? It seems that tv only shows binary data as <<#BIN>>.According