--
You received this message because you are subscribed to the Google Groups "UniMRCP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to unimrcp+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/unimrcp/803c6390-20b6-45ff-bf74-e4ab8ec1ef4bn%40googlegroups.com.
<max-connection-count>100</max-connection-count>
<max-shared-use-count>100</max-shared-use-count>
<force-new-connection>false</force-new-connection>
Client:
"<max-connection-count>100</max-connection-count>"
"<offer-new-connection>false</offer-new-connection>" // Reuse an existing connection if there is one
So we’ve got 100 connections all reusable but does that mean we are limited to 100 concurrent MRCP sessions and the reusability is that a TCP connection is reused for a series of sequential MRCP exchanges instead of creating a new TCP connection for each MRCP exchange ?
If we wanted 500 concurrent sessions as a max then we would need max-connection-count of at least 500 so in other words you can't share the sessions over a single TCP connection ?
Do you know if there is an effective limit (maybe dictated performance) on the max-connection-count ?
Thanks
Ed
> So we’ve got 100 connections all reusable but does that mean we are limited to 100 concurrent MRCP sessions
No, the concurrency is not limited with this setting. A single connection can be used by an unlimited number of concurrent MRCP sessions placed between the same client and server.
> and the reusability is that a TCP connection is reused for a series of sequential MRCP exchanges instead of creating a new TCP connection for each MRCP exchange ?
If you refer to request/response messages, then they are carried over a single connection. Furthermore, the same connection will/can be used for many concurrent request/responses.
> If we wanted 500 concurrent sessions as a max then we would need max-connection-count of at least 500 so in other words you can't share the sessions over a single TCP connection ?
No, you do not have to set it to 500, unless the client offers to establish a new connection per MRCP session (
<force-new-connection>true</force-new-connection>
)
and/or the server enforces the new connection (<force-new-connection>true</force-new-connection>
)
> Do you know if there is an effective limit (maybe dictated performance) on the max-connection-count ?
To view this discussion on the web visit https://groups.google.com/d/msgid/unimrcp/e9791957-0f22-47de-b6c1-f6f6a4424ca1n%40googlegroups.com.