Failed to Create Cookie file RabbitMQ in Windows

Set the home drive to some dir in the dos shell before executing the cli. Create a startup file, e.g start-rabbit.bat, with contents below. set HOMEDRIVE=C:/conf/rabbitmq :: Or your favorite dir rabbitmq-plugins.bat enable rabbitmq_management Use a folder in C drive c:/conf/rabbitmq. The rabbitmq system will write the cookie file there. It is a good idea … Read more

Is Erlang Object-Oriented?

Joe Armstrong has gone on record saying that he thinks that Erlang is “possibly the only object-oriented language” (the context adds “OO in the Alan Kay meaning of the word”). Johnson, in the same interview, points out the same things that Sean Copenhaver says in his answer: in the small, Erlang’s a purely functional language; … Read more

Why is MPI considered harder than shared memory and Erlang considered easier, when they are both message-passing?

I agree with all previous answers, but I think a key point that is not made totally clear is that one reason that MPI might be considered hard and Erlang easy is the match of model to the domain. Erlang is based on a concept of local memory, asynchronous message passing, and shared state solved … Read more

What is the storage capacity of a Mnesia database?

Quite large if your question is “what’s the storage capacity of an mnesia database made up of a huge number of disc_only_copies tables” – you’re largely limited by available disk space. An easier question to answer is what’s the maximum capacity of a single mnesia table of different types. ram_copies tables are limited by available … Read more