<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:courier,monaco,monospace,sans-serif;font-size:12pt">looking at the C code in mod_spidermonkey I can see<br>that session.originate and session.waitForAnswer/Media<br>did not suspend the garbage collector.<br><br>Most often, when the host system spidermonkey is embedded<br>in calls something that will block in the C code we<br>should use special code around it to disable garbage collection.<br><br>It's sort of like a mutex only it's backwards where you<br>want to unlock it while you do anything that blocks<br>and re-lock it when you resume.<br><br><br>Since these 3 function can delay execution of more<br>javascript I added code to revision 7343 to do this.<br><br>Please test.<br><br>Also, even if it works, you can still be more efficient by<br>doing what Mike suggested and use the new bgapi FSAPI<br>call together with the originate FSAPI call to
 originate<br>the call in the core then execute the script.<br><br>bgapi originate {ignore_early_media=true}sofia/default/user@domain.com &amp;javascript(myscript.js)<br><br>This will launch your script with the session already created.&nbsp; If you omit bgapi the xmlrpc call will block until the call is established, if it's present it will run in it's own thread to establish the call and fire and event to indicate the results.<br><br><br><br><br><br><div>&nbsp;</div><div>Anthony Minessale II<br><br><span>FreeSWITCH <a target="_blank" href="http://www.freeswitch.org/">http://www.freeswitch.org/</a></span><br><span>ClueCon <a target="_blank" href="http://www.cluecon.com/">http://www.cluecon.com/</a></span><br><br>AIM: anthm<br>MSN:anthony_minessale@hotmail.com<br>GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<br>IRC: irc.freenode.net #freeswitch</div><div><br>FreeSWITCH Developer
 Conference<br>sip:888@conference.freeswitch.org<br>iax:guest@conference.freeswitch.org/888<br>googletalk:conf+888@conference.freeswitch.org<br>pstn:213-799-1400</div><div style="font-family: courier,monaco,monospace,sans-serif; font-size: 12pt;"><br><br><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;">----- Original Message ----<br>From: "tuhl@ix.netcom.com" &lt;tuhl@ix.netcom.com&gt;<br>To: freeswitch-users@lists.freeswitch.org<br>Sent: Wednesday, January 23, 2008 7:55:23 PM<br>Subject: [Freeswitch-users] 'outbound' IVR with JavaScript - garbage collection issues<br><br>
My application dials 100's of numbers, waits for user to answer, <br>plays a .wav file, and waits for some DTMF. I'm using the Javascript <br>interface to do all this now (actually it's a Perl script which <br>launches JS by sending jsrun commands through the RPC XML interface). <br>But at high call rates, I'm running into JS garbage collection issues <br>fairly quickly. At 10 calls per second, after about 300 calls it <br>looks like JS GC kicks in and runs for like 45 seconds, during which <br>time I can't launch any more calls with JS (RPC XML accepts them, but <br>then they are getting Q'd up inside the spidermonkey code, and <br>eventually some of them fail because GC is taking so long, etc).<br><br>Is JS the best way to do this application, and if so, any ideas how I <br>workaround the GC? If not, what is the alternative (where I would <br>still have access to the simple programming interface that JS gives <br>me, as far as all the session.
 functions like waitForAnswer, <br>streamFile, getDigits).<br><br>Tom<br><br><br>===============<br><a ymailto="mailto:tuhl@ix.netcom.com" href="mailto:tuhl@ix.netcom.com">tuhl@ix.netcom.com</a> <br><br><br><br>_______________________________________________<br>Freeswitch-users mailing list<br><a ymailto="mailto:Freeswitch-users@lists.freeswitch.org" href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br><a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br></div><br></div></div><br>

      <hr size=1>Never miss a thing.  <a href="http://us.rd.yahoo.com/evt=51438/*http://www.yahoo.com/r/hs"> Make Yahoo your homepage.</a>

</body></html>