englercj / node-esl

FreeSWITCH ESL implementation for Node.js; implements the full Event Socket Library specified in: http://wiki.freeswitch.org/wiki/Esl
http://englercj.github.com/node-esl/
MIT License
170 stars 111 forks source link

Clarification needed for using this module #61

Closed vijayaa closed 7 years ago

vijayaa commented 7 years ago

We are planning to using this module to make connection to freeswitch and place users in conference call by executing an api command

conference testconf dial {originate_timeout=30}user/1001 1234567890 FreeSWITCH_Conference Will be OK if there are many conferences parallelly

aalexgabi commented 7 years ago

@vijayaa I'm not sure I understand your question. Yes FreeSWITCH can handle multiple conferences in the same time. Yes you can use node-esl to join multiple legs with a conference or initiate legs for a specific conference.

There may be CPU performance issues with your FreeSWITCH server if you want to create hundreds of conferences with hundreds of legs.

vijayaa commented 7 years ago

OK. Thank you