Package com.complexible.stardog.serf.db
Class SerfOptions
- java.lang.Object
-
- com.complexible.stardog.serf.db.SerfOptions
-
- All Implemented Interfaces:
MetaPropertyProvider
public class SerfOptions extends java.lang.Object implements MetaPropertyProvider
Serf options
-
-
Field Summary
Fields Modifier and Type Field Description static ConfigProperty<java.lang.Boolean>
AUTO_SCHEMA
Enables automatic SQL schema generation when one does not exist in the database.static ConfigProperty<com.stardog.model.DataModelFormat>
AUTO_SCHEMA_FORMAT
Specifies the input source to use for generating the SQL schema automatically when one does not exist in the database.static Option<java.lang.Integer>
COMMAND_BUFFER_SIZE
Option for fixed size buffer we use to read commands from the client.static Option<java.lang.Boolean>
COMMIT_INVALIDS_SCHEMA
Should schema mappings being invalidated on TX commit? If set to false, the DB needs to be taken offline to invalidate schemastatic ConfigProperty<java.util.Collection<IRI>>
DATA_GRAPHS
static Option<java.lang.Boolean>
ENABLED
Whether or not the SQL server is enabledstatic Option<java.lang.Integer>
PORT
Port the Serf server should listen onstatic ConfigProperty<IRI>
SCHEMA_GRAPH
Deprecated.
-
Constructor Summary
Constructors Constructor Description SerfOptions()
-
-
-
Field Detail
-
ENABLED
public static final Option<java.lang.Boolean> ENABLED
Whether or not the SQL server is enabled
-
PORT
public static final Option<java.lang.Integer> PORT
Port the Serf server should listen on
-
COMMIT_INVALIDS_SCHEMA
public static final Option<java.lang.Boolean> COMMIT_INVALIDS_SCHEMA
Should schema mappings being invalidated on TX commit? If set to false, the DB needs to be taken offline to invalidate schema
-
COMMAND_BUFFER_SIZE
public static final Option<java.lang.Integer> COMMAND_BUFFER_SIZE
Option for fixed size buffer we use to read commands from the client. May need to be extended if the client is sending very large SQL queries.
-
AUTO_SCHEMA
public static final ConfigProperty<java.lang.Boolean> AUTO_SCHEMA
Enables automatic SQL schema generation when one does not exist in the database.
-
AUTO_SCHEMA_FORMAT
public static final ConfigProperty<com.stardog.model.DataModelFormat> AUTO_SCHEMA_FORMAT
Specifies the input source to use for generating the SQL schema automatically when one does not exist in the database.
-
DATA_GRAPHS
public static final ConfigProperty<java.util.Collection<IRI>> DATA_GRAPHS
-
SCHEMA_GRAPH
@Deprecated public static final ConfigProperty<IRI> SCHEMA_GRAPH
Deprecated.
-
-