2011-03-19 06:37:00 +08:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/options.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/comparator.h"
|
|
|
|
#include "leveldb/env.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
Options::Options()
|
|
|
|
: comparator(BytewiseComparator()),
|
|
|
|
create_if_missing(false),
|
|
|
|
error_if_exists(false),
|
|
|
|
paranoid_checks(false),
|
|
|
|
env(Env::Default()),
|
|
|
|
info_log(NULL),
|
2011-04-13 03:38:58 +08:00
|
|
|
write_buffer_size(4<<20),
|
2011-03-19 06:37:00 +08:00
|
|
|
max_open_files(1000),
|
|
|
|
block_cache(NULL),
|
2011-04-13 03:38:58 +08:00
|
|
|
block_size(4096),
|
2011-03-19 06:37:00 +08:00
|
|
|
block_restart_interval(16),
|
2012-04-17 23:36:46 +08:00
|
|
|
compression(kSnappyCompression),
|
|
|
|
filter_policy(NULL) {
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|