<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Mar 12, 2015 at 11:45 PM, Leandro Ostera <span dir="ltr"><<a href="mailto:me@leostera.com" target="_blank">me@leostera.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="font-size:13px">I was trying to use a quite old <a href="https://github.com/arjan/espotify" target="_blank">erlang wrapper around libspotify</a>, which seems to be defining a bunch of NIFs, to make an audio streaming server that would keep N web-based clients playing the same audio at (give or take milliseconds) the same time. The problem is that according to <a href="https://github.com/arjan/espotify/blob/master/src/espotify_api.erl#L73-L84" target="_blank">one of the source files</a>, it'd only be able to have one open Spotify session per VM, which of course didn't sound too exciting.</div></blockquote></div><br>The library may not be thread-safe. That is, it assumes a single thread for access and it stores session information in global variables inside the library itself. You may want to check if there is a newer version of the library without these limitations.</div><div class="gmail_extra"><br></div><div class="gmail_extra">NIFs do support proper multithreading and local context, but the library needs to support it as well. The term you are looking for w.r.t the context are 'resources':</div><div class="gmail_extra"><br></div><div class="gmail_extra"><a href="http://www.erlang.org/doc/man/erl_nif.html#enif_resource_example">http://www.erlang.org/doc/man/erl_nif.html#enif_resource_example</a><br clear="all"><div><br></div><div><br></div>-- <br><div class="gmail_signature">J.</div>
</div></div>