<div dir="ltr">When the stability is important you have several choices:<div>1. Not use a NIF, write your logic in Erlang. Big industrial Erlang users may prefer this, for better debuggability and predictability at the cost of performance.</div><div>2. Write a really safe NIF which doesn't crash. Use defensive programming approach. Use safe language like Rust.</div><div>3. Separate your C code from Erlang node, write a port — a console application which accepts input in stdin and prints results to stdout, then use Erlang open port function to start it and port commands to communicate with it. </div></div><div class="gmail_extra"><br><div class="gmail_quote">2017-08-16 15:53 GMT+02:00 code wiget <span dir="ltr"><<a href="mailto:codewiget95@gmail.com" target="_blank">codewiget95@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hello,<div><br></div><div>I have been reading about NIF’s here: <a href="http://erlang.org/doc/tutorial/nif.html" target="_blank">http://erlang.org/doc/<wbr>tutorial/nif.html</a> but it seems like they are incredibly unsafe: “it is also the least safe, because a crash in a NIF brings the emulator down too”. The problem here is huge, ideally I can’t ever have my Erlang VM close.</div><div><br></div><div>What solution do you Erlangers use when you have to run low level code? My goal is to send a sort of “GET” request with a UUID and I will receive back that UUID along with some binary values. My C code works with this, but I can’t jeopardize the entire server crashing.</div><div><br></div><div>Thank you for your help!</div></div><br>______________________________<wbr>_________________<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" rel="noreferrer" target="_blank">http://erlang.org/mailman/<wbr>listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>