NOTE: I\'ll use the ssh_sftp channel as an example here, but I\'ve noticed th开发者_运维百科e same behaviour when using different channels.
I have some configuration data in a config file that I read off disk when the app starts.I need to make that configuration data available to other functions/modules in the application.I started down t
I have tried : c(module_name). : but this only works f开发者_如何学运维rom the shell, and gives an error when I try to run it from within a module.If you want exactly that behaviour, c:c(module_nam
I\'m attempting to use a record in a guard as described here[1].If I use the short 开发者_高级运维form described there:
Read (skimmed enough to get coding) through Erlang Programming and Programming Erlang. One question, which is as simple as it sounds:
is there a way to create a P2P web-chat w开发者_高级运维ithout any server ?Yes, but you must decide on a place to meet.
Is there an Erlang AMQP client library th开发者_C百科at is not tied to the hip with RabbitMQ? I know about rabbitmq-erlang-client but I would like something more decoupled... pain when it comes to pac
Is it possible to trap Linux signals (e.g. SIGUSR1) through an handler in Erlang? (without having to resort 开发者_Python百科to a driver crafted in C)(NOT A REAL ANSWER)
For example, to denote a String I could use: {string,\"hjggjhhggJ\"} and a list would be: {list, [1,2,3]}
Is there any way to format this so it\'s a valid expression, without adding another step? <<One:8,_:(One*8)>> = <<1,9>>.