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
34
34
public static final String IMPORT_DIR = "dbms.directories.import" ;
35
35
public static final String LISTEN_ADDR = "dbms.connectors.default_listen_address" ; // only valid for 3.1+
36
36
public static final String IPV6_ENABLED_ADDR = "::" ;
37
+ public static final String PAGE_CACHE_SIZE = "dbms.memory.pagecache.size" ;
37
38
38
39
private static final String DEFAULT_IMPORT_DIR = "import" ;
39
40
private static final String DEFAULT_CERT_DIR = "certificates" ;
40
41
public static final String DEFAULT_TLS_CERT_PATH = DEFAULT_CERT_DIR + "/neo4j.cert" ;
41
42
public static final String DEFAULT_TLS_KEY_PATH = DEFAULT_CERT_DIR + "/neo4j.key" ;
43
+ public static final String DEFAULT_PAGE_CACHE_SIZE = "1g" ;
42
44
43
45
public static final String DEFAULT_DATA_DIR = "data" ;
44
46
@@ -51,6 +53,7 @@ public class Neo4jSettings
51
53
DATA_DIR , DEFAULT_DATA_DIR ,
52
54
IMPORT_DIR , DEFAULT_IMPORT_DIR ,
53
55
AUTH_ENABLED , "true" ,
56
+ PAGE_CACHE_SIZE , DEFAULT_PAGE_CACHE_SIZE ,
54
57
LISTEN_ADDR , IPV6_ENABLED_ADDR ), Collections .<String >emptySet () );
55
58
56
59
private Neo4jSettings ( Map <String , String > settings , Set <String > excludes )
You can’t perform that action at this time.
0 commit comments