If your main goal is to use erlang as an application server for web requests, and you want a fast development iteration cycle, have you checked out the "reloader" module? (I think it comes with mochiweb)<div>This module will re-load BEAM files as they are re-compiled, into a running Erlang server. I find it's quite convenient for quick turn-around development.</div>
<div><br></div><div>Yes, you still need to type "make" after you save the changes, before you actually hit the service on the web, but you can also just bind a macro to "save and make" :-) The benefit of this is that, if you have a syntax error, you don't have to poke at the application through a web browser to find it; you will be told by the compiler immediately.</div>
<div><br></div><div>I wouldn't recommend using reloader for production use, though. Also, there are some issues with code references hanging around past the "old code" stage -- long-lived funs are the biggest culprit.</div>
<div><br></div><div>Sincerely,</div><div><br></div><div>jw</div><div><br clear="all"><br>--<br>Americans might object: there is no way we would sacrifice our living standards for the benefit of people in the rest of the world. Nevertheless, whether we get there willingly or not, we shall soon have lower consumption rates, because our present rates are unsustainable. <br>
<br>
<br><br><div class="gmail_quote">On Tue, Sep 13, 2011 at 4:19 AM, Max Lapshin <span dir="ltr"><<a href="mailto:max.lapshin@gmail.com">max.lapshin@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi.<br>
<br>
I've written a letter several times to Santa Claus to have some easy<br>
Rails <-> erlang integration for my needs, but he seems to be too<br>
busy.<br>
<br>
So, my problem is: it is not convenient for me to write all customer<br>
logic in erlang, because it involves process of compiling and loading<br>
modules.<br>
Also, I would be very great to share the same file between web site<br>
and erlang daemon.<br>
<br>
It seems, that most developed beam-based language is elixir<br>
(<a href="https://github.com/josevalim/elixir" target="_blank">https://github.com/josevalim/elixir</a> ), but there are some erlang<br>
problems, that looks like blocking for<br>
have convenient scripting in erlang.<br>
<br>
<br>
I have erlyvideo server and it has config. There is option in config:<br>
<br>
{detectors, [rewrite, akamai, livestream]}.<br>
<br>
When user requests stream, media_provider takes this list of<br>
detectors, goes one by one and calls:<br>
<br>
case Module:check(Host, Name, Options) of<br>
   ..<br>
<br>
for each atom. Now we meet the problem. When I write  Module:check,<br>
code_server is loading module and it can load only .beam and .app<br>
files.<br>
If I have any way to hook inside with some code that will say: Hi, I<br>
know how to load this module, i think it will be easier to add simple<br>
non-compilable scripting to my app and have something like Java world<br>
have:  Ruby/Python classed mixed with "native" Java classes.<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div><br></div>