Flexmonster Software License Agreement (“Agreement”) has been significantly revised and is effective as of September 30, 2024.
The following modifications were made:
The modified version of Flexmonster Software License Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after September 30, 2024, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Flexmonster Software License Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license under License Model or Maintenance after the effective date of any modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This guide describes how to configure Flexmonster MongoDB Connector. For instructions on using the Connector, see Embedding the MongoDB Connector into the server.
Flexmonster MongoDB Connector can be configured through the ConfigInterface
object, which has the following properties:
Here is an example of setting configurations for the Connector:
// Define config let config = { cacheEnabled: true, // Setting cache memory limit to 100 MB cacheMemoryLimit: 100, // The cache will be stored for two hours cacheTimeToLive: 120, logsEnabled: true } // Pass the config when initializing the Connector let _apiReference = new MongoDataAPI(config);
// Define config let config: ConfigInterface = { cacheEnabled: true, // Setting cache memory limit to 100 MB cacheMemoryLimit: 100, // The cache will be stored for two hours cacheTimeToLive: 120, logsEnabled: true } // Pass the config when initializing the Connector let _apiReference: MongoDataAPI = new MongoDataAPI(config);