I\'m starting to learn lambda calculus and I need to implement I, S, K combinators in Erlang. Of course, S, K, I stands for:
I tried this code snippet: print_next(Current) -> case mnesia:dirty_next(muppet, Current) of \'$end_of_table\' ->
I am looking for a robust connection pooling library for Postgre开发者_StackOverflow社区sql. Something similar to https://github.com/dweldon/riakpool would be great.Poolboy is a pretty good general-p
I created a logging module which logs messages to a mysql db, the current code is located here: https://github.com/amiadogroup/mod_log_chat_mysql5/blob/master/src/mod_log_chat_mysql5.erl
I can run many erlang nodes from batch file. But, can i pass some ar开发者_运维问答guments to erl that cause it to execute some commands?If you wish to start a node, and for example start an erlang ap
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 spent a bit time on this work item ( here , I called it work item ).--- How to integrate the erlang unit test in hudson?
How to make release using开发者_C百科 rebar without erts included in?A release is a self packaged erlang runtime within your application, so i think you just can\'t.
I have the following setup: 1> rd(开发者_Python百科rec, {name, value}). rec 2> L = [#rec{name = a, value = 1}, #rec{name = b, value = 2}, #rec{name = c, value = 3}].
Need to implement sync call from proces which receives many incoming messages from other processes. Problem in distinguish - when msg in return to call arrived. Do i need to spawn additional process f