forked from Mirrors/freeswitch
22 lines
687 B
XML
22 lines
687 B
XML
<configuration name="mongo.conf">
|
|
<settings>
|
|
<!--
|
|
connection-string handles different ways to connect to mongo
|
|
samples:
|
|
server:port
|
|
foo/server:port,server:port SET
|
|
-->
|
|
<param name="connection-string" value="127.0.0.1:27017"/>
|
|
<param name="max-connections" value="100"/>
|
|
<!-- Timeout in seconds. 0 means no timeout -->
|
|
<param name="socket-timeout" value="0"/>
|
|
|
|
<!--
|
|
<param name="map" value="function() { emit(this.a, 1); }"/>
|
|
<param name="reduce" value="function(key, values) { return Array.sum(values); }"/>
|
|
<param name="finalize" value="function(key, value) { return value;}"/>
|
|
-->
|
|
|
|
</settings>
|
|
</configuration>
|