10 lines
259 B
Python
10 lines
259 B
Python
# compaction
|
|
SizeTieredCompactionStrategy = "SizeTieredCompactionStrategy"
|
|
LeveledCompactionStrategy = "LeveledCompactionStrategy"
|
|
|
|
# Caching constants.
|
|
CACHING_ALL = "ALL"
|
|
CACHING_KEYS_ONLY = "KEYS_ONLY"
|
|
CACHING_ROWS_ONLY = "ROWS_ONLY"
|
|
CACHING_NONE = "NONE"
|