1 ; Tell PHP to load the Mongo Extension on startup
5 ; If the driver should reconnect to mongo
6 mongo.auto_reconnect = False
8 ; Whether to allow persistent connections
9 mongo.allow_persistent = On
11 ; Maximum number of persistent connections (-1 means unlimited)
12 mongo.max_persistent = -1
14 ; Maximum number of links (persistent and non-persistent, -1 means unlimited)
15 mongo.max_connections = -1
17 ; Default host for mongo connection
18 mongo.default_host = localhost
20 ; Default port for mongo database
21 mongo.default_port = 27017
23 ; When saving files to the database, size of chunks to split them into
24 mongo.chunk_size = 262400
26 ; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.)