mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-24 18:40:38 +00:00
The field compressor is about saying which compressor algorithm must be used in compression of sstable data file. This is a small step towards compressed sstable data file. Signed-off-by: Raphael S. Carvalho <raphaelsc@cloudius-systems.com>
13 lines
138 B
C++
13 lines
138 B
C++
/*
|
|
* Copyright (C) 2015 Cloudius Systems, Ltd.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
enum class compressor {
|
|
none,
|
|
lz4,
|
|
snappy,
|
|
deflate,
|
|
};
|