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_SCHEMAEnables automatic SQL schema generation when one does not exist in the database.static ConfigProperty<com.stardog.model.DataModelFormat>AUTO_SCHEMA_FORMATSpecifies the input source to use for generating the SQL schema automatically when one does not exist in the database.static Option<java.lang.String>COMMAND_BUFFER_SIZEOption for fixed size buffer we use to read commands from the client.static Option<java.lang.Boolean>COMMIT_INVALIDS_SCHEMAShould 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_GRAPHSstatic Option<java.lang.Boolean>ENABLEDWhether or not the SQL server is enabledstatic Option<java.lang.String>MAX_ALLOWED_PACKETOption for maximum packet size allowed by the client.static intMAX_ALLOWED_PACKET_LIMITThis is the maximum valueMAX_ALLOWED_PACKETcan be set to by the user.static Option<java.lang.Integer>PORTPort the Serf server should listen onstatic ConfigProperty<IRI>SCHEMA_GRAPHDeprecated. 
- 
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.String> 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. 
- 
MAX_ALLOWED_PACKET
public static final Option<java.lang.String> MAX_ALLOWED_PACKET
Option for maximum packet size allowed by the client. Since we don't support insert queries this limit is set to a default value of 64KB but can be increased if necessary. 
- 
MAX_ALLOWED_PACKET_LIMIT
public static final int MAX_ALLOWED_PACKET_LIMIT
This is the maximum valueMAX_ALLOWED_PACKETcan be set to by the user. 
- 
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. 
 - 
 
 -