eb821aa615
Summary: AST caching should be well tested by now. We should consider removing `Context.is_query_cached_` member as well as the implementation and tests for `CypherMainVisitor`. Reviewers: mislav.bradac, mferencevic, buda Reviewed By: mislav.bradac Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D833
27 lines
671 B
Plaintext
27 lines
671 B
Plaintext
# MEMGRAPH DEFAULT STRESS TESTING CONFIG
|
|
|
|
# NOTE: all paths are relative to the run folder
|
|
# (where the executable is run)
|
|
|
|
# directory to the folder with snapshots
|
|
--snapshot-directory=snapshots
|
|
|
|
# cleaning cycle interval
|
|
# if set to -1 the GC will not run
|
|
--gc-cycle-sec=30
|
|
|
|
# snapshot cycle interval
|
|
# if set to -1 the snapshooter will not run
|
|
--snapshot-cycle-sec=600
|
|
|
|
# create snapshot enabled on db exit
|
|
--snapshot-on-exit=true
|
|
|
|
# max number of snapshots which will be kept on the disk at some point
|
|
# if set to -1 the max number of snapshots is unlimited
|
|
--snapshot-max-retained=1
|
|
|
|
# database recovering is disabled by default
|
|
--snapshot-recover-on-startup=false
|
|
|