Release 2.5.2 (#3985)

* Adds ability to configure cache from cli

* dont use array.includes for node 4.6

* Changelog and version bump

* Removes runtime check for version

* Build releases on 4.6
This commit is contained in:
Florent Vilmart
2017-07-02 20:50:13 -04:00
committed by GitHub
parent 287810443b
commit 5931aa8851
6 changed files with 21 additions and 8 deletions

View File

@@ -8,7 +8,6 @@ import {
nullParser
} from '../utils/parsers';
export default {
"appId": {
env: "PARSE_SERVER_APPLICATION_ID",
@@ -225,6 +224,16 @@ export default {
help: "Use a single schema cache shared across requests. Reduces number of queries made to _SCHEMA. Defaults to false, i.e. unique schema cache per request.",
action: booleanParser
},
"cacheTTL": {
env: "PARSE_SERVER_CACHE_TTL",
help: "Sets the TTL for the in memory cache (in ms), defaults to 5000 (5 seconds)",
action: numberParser,
},
"cacheMaxSize": {
env: "PARSE_SERVER_CACHE_MAX_SIZE",
help: "Sets the maximum size for the in memory cache, defaults to 10000",
action: numberParser
},
"cluster": {
env: "PARSE_SERVER_CLUSTER",
help: "Run with cluster, optionally set the number of processes default to os.cpus().length",