pub unsafe extern "C" fn cass_cluster_set_use_schema(
    cluster: *mut CassCluster,
    enabled: cass_bool_t
)
Expand description

Enable/Disable retrieving and updating schema metadata. If disabled this is allows the driver to skip over retrieving and updating schema metadata and cass_session_get_schema_meta() will always return an empty object. This can be useful for reducing the startup overhead of short-lived sessions.

Default: cass_true (enabled).

@public @memberof CassCluster

@param[in] cluster @param[in] enabled

@see cass_session_get_schema_meta()