1 // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. See the AUTHORS file for names of contributors.
5 #include "leveldb/options.h"
7 #include "leveldb/comparator.h"
8 #include "leveldb/env.h"
13 : comparator(BytewiseComparator()),
14 create_if_missing(false),
15 error_if_exists(false),
16 paranoid_checks(false),
19 write_buffer_size(4<<20),
23 block_restart_interval(16),
25 compression(kSnappyCompression
),
30 } // namespace leveldb