Method | Description | |
---|---|---|
bloomFilterFPChance ( ) : float | Returns bloom filter FP chance | |
caching ( ) : string | Returns caching options | |
clusteringKey ( ) : array | Returns the clustering key columns of the table | |
clusteringOrder ( ) : array | ||
column ( string $name ) : Cassandra\Column | Returns column by name | |
columns ( ) : array | Returns all columns in this table | |
comment ( ) : string | Description of the table, if any | |
compactionStrategyClassName ( ) : string | Returns compaction strategy class name | |
compactionStrategyOptions ( ) : Cassandra\Map | Returns compaction strategy options | |
compressionParameters ( ) : Cassandra\Map | Returns compression parameters | |
defaultTTL ( ) : integer | Returns default TTL. | |
gcGraceSeconds ( ) : integer | Returns GC grace seconds | |
indexInterval ( ) : integer | Returns index interval | |
localReadRepairChance ( ) : float | Returns local read repair chance | |
maxIndexInterval ( ) : integer | Returns the value of max_index_interval | |
memtableFlushPeriodMs ( ) : integer | Returns memtable flush period in milliseconds | |
minIndexInterval ( ) : integer | Returns the value of min_index_interval | |
name ( ) : string | Returns the name of this table | |
option ( $name ) : Cassandra\Value | Return a table's option by name | |
options ( ) : array | Returns all the table's options | |
partitionKey ( ) : array | Returns the partition key columns of the table | |
populateIOCacheOnFlush ( ) : boolean | Returns whether or not the populate_io_cache_on_flush is true | |
primaryKey ( ) : array | Returns both the partition and clustering key columns of the table | |
readRepairChance ( ) : float | Returns read repair chance | |
replicateOnWrite ( ) : boolean | Returns whether or not the replicate_on_write is true | |
speculativeRetry ( ) : string | Returns speculative retry. |
public bloomFilterFPChance ( ) : float | ||
return | float | Bloom filter FP chance |
public clusteringKey ( ) : array | ||
return | array | A list of of `Cassandra\Column` instances |
public clusteringOrder ( ) : array | ||
return | array | A list of cluster column orders ('asc' and 'desc') |
public compactionStrategyClassName ( ) : string | ||
return | string | Compaction strategy class name |
public compactionStrategyOptions ( ) : Cassandra\Map | ||
return | Cassandra\Map | Compaction strategy options |
public compressionParameters ( ) : Cassandra\Map | ||
return | Cassandra\Map | Compression parameters |
public defaultTTL ( ) : integer | ||
return | integer | Default TTL. |
public gcGraceSeconds ( ) : integer | ||
return | integer | GC grace seconds |
public indexInterval ( ) : integer | ||
return | integer | Index interval |
public localReadRepairChance ( ) : float | ||
return | float | Local read repair chance |
public maxIndexInterval ( ) : integer | ||
return | integer | Value of `max_index_interval` or null |
public memtableFlushPeriodMs ( ) : integer | ||
return | integer | Memtable flush period in milliseconds |
public minIndexInterval ( ) : integer | ||
return | integer | Value of `min_index_interval` or null |
public option ( $name ) : Cassandra\Value | ||
return | Cassandra\Value | Value of an option by name |
public partitionKey ( ) : array | ||
return | array | A list of of `Cassandra\Column` instances |
public populateIOCacheOnFlush ( ) : boolean | ||
return | boolean | Value of `populate_io_cache_on_flush` or null |
public primaryKey ( ) : array | ||
return | array | A list of of `Cassandra\Column` instances |
public readRepairChance ( ) : float | ||
return | float | Read repair chance |
public replicateOnWrite ( ) : boolean | ||
return | boolean | Value of `replicate_on_write` or null |
public speculativeRetry ( ) : string | ||
return | string | Speculative retry. |