File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
driver/src/test/java/org/neo4j/driver/v1/util Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,13 @@ public class Neo4jSettings
3434 public static final String IMPORT_DIR = "dbms.directories.import" ;
3535 public static final String LISTEN_ADDR = "dbms.connectors.default_listen_address" ; // only valid for 3.1+
3636 public static final String IPV6_ENABLED_ADDR = "::" ;
37+ public static final String PAGE_CACHE_SIZE = "dbms.memory.pagecache.size" ;
3738
3839 private static final String DEFAULT_IMPORT_DIR = "import" ;
3940 private static final String DEFAULT_CERT_DIR = "certificates" ;
4041 public static final String DEFAULT_TLS_CERT_PATH = DEFAULT_CERT_DIR + "/neo4j.cert" ;
4142 public static final String DEFAULT_TLS_KEY_PATH = DEFAULT_CERT_DIR + "/neo4j.key" ;
43+ public static final String DEFAULT_PAGE_CACHE_SIZE = "1g" ;
4244
4345 public static final String DEFAULT_DATA_DIR = "data" ;
4446
@@ -51,6 +53,7 @@ public class Neo4jSettings
5153 DATA_DIR , DEFAULT_DATA_DIR ,
5254 IMPORT_DIR , DEFAULT_IMPORT_DIR ,
5355 AUTH_ENABLED , "true" ,
56+ PAGE_CACHE_SIZE , DEFAULT_PAGE_CACHE_SIZE ,
5457 LISTEN_ADDR , IPV6_ENABLED_ADDR ), Collections .<String >emptySet () );
5558
5659 private Neo4jSettings ( Map <String , String > settings , Set <String > excludes )
You can’t perform that action at this time.
0 commit comments